// Java Document
function showWarning(url){
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<div align="left"><b>You are leaving www.bankofpontiac.com</b><p>Bank of Pontiac does not provide, and is not responsible for, the product, service, or overall website content available at a third-party site. Bank of Pontiac neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.<br /><br />Bank of Pontiac\'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 Bank of Pontiac website.</p></div>';
	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 ="4" color="#3266CC">OK</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:void(\'0\');" onclick="document.getElementById(\'ex_dis\').style.visibility = \'hidden\'"><font size ="4" color="#3266CC">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: #fff; font-family: Arial, Helvetica, sans-serif; font-size: 9pt; font-weight: normal; color: #112B62; position:absolute;  margin:5% 5%; border: thin solid #ffa44a; padding: 15px; visibility: hidden;z-index: 999; width:350px; FILTER: progid:DXImageTransform.Microsoft.dropShadow( Color=#3266CC,offX=4,offY=4,positive=true); "></div>');