function showWarning(url){
	rs = false;
	var content = new Array();
	var index = 0;
	content[index++] = '<h2>Third Party Links Disclaimer</h2><p>By accessing the link below you will be leaving The Town of Hempstead Employees Federal Credit Union\'s website and entering a website hosted by another party. </p><p>Although The Town of Hempstead Employees Federal Credit Union has approved this as a reliable partner site, please be advised that you will no longer be subject to, or under the protection of, the privacy and security policies of the Town of Hempstead Employees Federal Credit Union\'s website.</p><p>We encourage you to read and evaluate the privacy and security policies on the site you are entering, which may be different than those of The Town of Hempstead Employees Federal Credit Union.</p>';
	content[index++] = '<div align="center"><a href="javascript:void(\'0\');" onclick="window.open(\''+url+'\');document.getElementById(\'ex_dis\').style.visibility = \'hidden\'">Continue</a>&nbsp;&nbsp;<a href="javascript:void(\'0\');" onclick="document.getElementById(\'ex_dis\').style.visibility = \'hidden\'">Decline</a></div></div>';
	document.getElementById("ex_dis").innerHTML = content.join("");
	document.getElementById("ex_dis").style.visibility = "visible";
	scrollTo(0, 0);
}

function openWindow(theURL,winName,features) { //v2.0
	if (!winName)	{winName= "win";}
	if (!features)	{features= "";}
	
	window.open(theURL,winName,features);
}

document.write('<div id="ex_dis" style="background-color: #ffffff; font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-weight: normal; color: #000000; text-align: left; position:absolute; top:125px; left:300px; border: thin solid #0c1c8c; padding: 15px; visibility: hidden;z-index: 300; width:400px; FILTER: progid:DXImageTransform.Microsoft.dropShadow(Color=#EEEEEE,offX=4,offY=4,positive=true); "></div>');