//external link popup
function showWarning(url){
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<b>You are leaving www.nscu.org</b><p>NorthStar Credit Union does not provide, and is not responsible for, the product, service, or overall website content available at a third-party site. NorthStar Credit Union neither endorses the information, content, presentation, or accuracy nor makes any warranty, express or implied, regarding any external site.<br /><br />NorthStar 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>Information sent by email is at risk of loss of confidentiality if the information is transmitted over the Internet. We do not recommend sending confidential information such as social security or account numbers by email. You can contact us directly at (630) 393 - 7201.<br /><br />Thank you for visiting the NorthStar 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: #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: 3px solid #FFE198; padding: 15px; visibility: hidden;z-index: 999; width:350px; FILTER: progid:DXImageTransform.Microsoft.dropShadow( Color=#FF8A1D,offX=4,offY=4,positive=true); "></div>');

