function toggleMe(a){
  var e=document.getElementById(a);
  if(!e)return true;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return true;
}

//submits the form and hidden parameters for the Employee Benefits page.
function submitform()
{
	document.myForm.submit();
}

//New window for the Locate a Center map.
function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open( windowURL, windowName, windowFeatures ) ; 
} 


// Image rollover code
image1 = new Image();
image1.src = "images/physicians_on.gif";

image2 = new Image();
image2.src = "images/patients_on.gif";
//end of image rollover code
