// Java Document
function showWarning(url){
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<b>You are leaving www.access-cu.com</b><p>Access Credit Union does not provide, and is not responsible for, the product, service, or overall website content available at a third-party site. Access Credit Union neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.<br /><br />Access Credit Union\'s privacy policies do not apply to linked websites. You should consult the privacy disclosures on any linked site for further information.<br /><br />Thank you for visiting the Access Credit Union website.</p>';
	content[index++] = '<br>';
	content[index++] = '<div align="center"><a href="javascript:void(\'0\');" onclick="window.open(\''+url+'\');document.getElementById(\'ex_dis\').style.visibility = \'hidden\'"><font size ="5" color="#000084">OK</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:void(\'0\');" onclick="document.getElementById(\'ex_dis\').style.visibility = \'hidden\'"><font size ="5"  color="#000084">Cancel</font></a></div></div>';	
	document.getElementById("ex_dis").innerHTML = content.join("");
	document.getElementById("ex_dis").style.visibility = "visible";
	scrollTo(0, 0);

}
document.write('<div id="ex_dis" style="background-color: #ffffff; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 8pt; font-weight: normal; color: #000000; position:absolute; left:100px; top:100px; margin:5% 5%; border: thin solid #010084; padding: 15px; visibility: hidden;z-index: 200; width:450px; FILTER: progid:DXImageTransform.Microsoft.dropShadow( Color=#E33C4D,offX=4,offY=4,positive=true); "></div>');