function openWin (url) {

var newWin = window.open(url,"popup","toolbar=yes, scrollbars=yes, resizable=yes ,width=800, height=600, left=0, top=0");
newWin.focus();
}

 function showWarning(url){
	//content creation
	var content = new Array();
        var index = 00;
	content[index++] = '<span class="header">Third Party Site Disclaimer</span><br />By continuing you will be leaving the Central Minnesota Federal Credit Union website.  We are not responsible for accuracy, security, or conduct of other websites.  We encourage you to view privacy and security  disclosures of all websites you visit.';
	content[index++] = '<br /><br /><br />';
	content[index++] = '<div align="center"><a href="'+url+'" target="_blank" onclick="document.getElementById(\'ex_dis\').style.visibility = \'hidden\'">Continue</a>&nbsp;&nbsp;<a href="javascript:void(\'0\');" onclick="document.getElementById(\'ex_dis\').style.visibility = \'hidden\'">Decline</a></div></div>';	
	document.getElementById("ex_dis").innerHTML = content.join("");
	document.getElementById("ex_dis").style.visibility = "visible";
	scrollTo(0,0); //used to make sure that the end user sees the disclaimer.

}
document.write('<div id="ex_dis" style="background-color: #ffffff; font-family: Arial, Helvetica, sans-serif; font-size: 8pt; font-weight: normal; color: #000000; text-align: center; position:absolute; margin:25% 25%; border: thin solid #B8C6EF; padding: 15px; visibility: hidden;z-index: 300; width:350px; FILTER: progid:DXImageTransform.Microsoft.dropShadow( Color=5E70D4,offX=7,offY=8,positive=true); "></div>');