// Java Document
function showWarning(url){
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<b>You are leaving www.sdcu.org for an external website over which South Division Credit Union has no content or security control. This external link is provided by SDCU for educational purposes only, and any requests for personal and financial information that may be requested on an external site are not endorsed or protected by SDCU\'s security protocols. If you have any questions or comments about this linked site, please contact us at <a href="mailto:email@sdcu.org"> email@sdcu.org.</a></b><p><b>You may return to www.sdcu.org by clicking the BACK button on your browser\'s main tool bar.</b></p>';

	content[index++] = '<div align="center"><a href="javascript:void(\'0\');" onclick="window.open(\''+url+'\');document.getElementById(\'ex_dis\').style.visibility = \'hidden\'"><font size ="2" color ="#ffffff">OK</font></a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="javascript:void(\'0\');" onclick="document.getElementById(\'ex_dis\').style.visibility = \'hidden\'"><font size ="2" color ="#ffffff">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: #1DBFED; font-family: Verdana, Geneva, Arial, Helvetica, sans-serif; font-size: 8pt; font-weight: normal; color: #ffffff; position:absolute; left:200px; top:100px; margin:5% 5%; border: thin solid #23507A; padding: 15px; visibility: hidden;z-index: 100; width:400px; FILTER: progid:DXImageTransform.Microsoft.dropShadow( Color=#000000,offX=4,offY=4,positive=true); "></div>');