// JavaScript Document

function toggle_visibility(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
    }
	
function deleteMemberCheck() {
	var agree=confirm("Are you sure you want to delete this member?\n\n All employees associated with this member will be deleted.\n\n This action cannot be undone.");
if (agree)
	deleteIC(icid); 
else
	return false ;
}