// JavaScript Document
// Leaving-this-Site Disclaimer Functions
// Use with include file leaving-this-site.html
/*--------To show popup-----------*/
function showDisclaimer(target)
{
   document.getElementById("hcp-leaving").style.display = "inline";
   document.getElementById("hcp-leaving-image").style.display = "inline";
   document.getElementById("disclaimer_ref").href = target;
   var browser=navigator.appName;
   if(browser=="Netscape")
			      {
				     document.getElementById("mz").style.display='inline';
					 var bodyWidth=document.body.clientWidth/2;
					
					// var popupLeft=bodyWidth-230+12;
					 document.getElementById('hcp-leaving-image').style.left='300px';
					 
				  }
}
/*--------To hide popup-----------*/
function hideDisclaimer()
{
   document.getElementById("hcp-leaving").style.display = "none";
   document.getElementById("hcp-leaving-image").style.display = "none";
   document.getElementById("hcp-leaving-image").style.top='150px'
}

