function DepartmentsHeadsDisplayStatus(theId) {
  theDepartentDispl = document.getElementById(theId).style.display; 
	if (theDepartentDispl == 'none') {
		document.getElementById(theId).style.display = 'block';
	} else {
		document.getElementById(theId).style.display = 'none';
	}
}
function showStaffPopUp(theId,theLang) {
	w_width = 400;
	w_height = 500;
	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=no,scrollbars=yes';

	fparam = 'templates/ws_mm_contacts_05/showstaffpopup.php?pageid=' + theId+'&lang=' + theLang;
  window.showStaffPopUpWindow = open(fparam, 'showStaffPopUpWindow', theWindowParam);
	setTimeout('if(showStaffPopUpWindow&&!showStaffPopUpWindow.closed)showStaffPopUpWindow.focus()',100);
}

