// Java Document
function showWarning(url){
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<b>You are leaving www.1stmsfcu.org</b><p>1st Mississippi Federal Credit Union does not provide, and is not responsible for, the product, service, or overall website content available at a third-party site. 1st Mississippi Federal Credit Union neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.<br /><br />1st Mississippi Federal 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 1st Mississippi Federal 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">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">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: #EBEDE2; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 8pt; font-weight: normal; color: #2d6130; position:absolute; left:100px; top:100px; margin:5% 5%; border: thin solid #CCCEB9; padding: 15px; visibility: hidden;z-index: 100; width:350px; FILTER: progid:DXImageTransform.Microsoft.dropShadow( Color=#D57008,offX=4,offY=4,positive=true); "></div>');