
  function OffSite(url){
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<h3>Third Party Site Disclaimer</h3><p align="left">The link you have selected will transfer you to a web site not operated by Utah Federal Credit Union. The web site you will be visiting may have privacy and security policies different from those of Utah Federal Credit Union. Therefore, you are encouraged to review these policies once you arrive.</p><p align="left"> \n\nBecause this web site is not operated by Utah Federal Credit Union, we cannot be responsible for its availability or content, nor do we represent either our members or the third party if you enter into a transaction with them.</p>';
	content[index++] = '<br />';
	content[index++] = '<div align="center"><a href="javascript:void(\'0\');" class="content" onclick="window.open(\''+url+'\');document.getElementById(\'ex_dis\').style.visibility = \'hidden\'">Continue</a>&nbsp;&nbsp;<a href="javascript:void(\'0\');" class="content" 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);

}
document.write('<div id="ex_dis" style="background-color: #ffffff; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: normal; color: #333; text-align: center; position:absolute; margin:10% 23% 10% 23%; border: thin solid #1b4b7f; -webkit-border-radius: 10px; -khtml-border-radius: 10px;	-moz-border-radius: 10px; border-radius: 10px; padding: 15px; visibility: hidden;z-index: 400; width:400px; FILTER: progid:DXImageTransform.Microsoft.dropShadow( Color=#333333,offX=2,offY=2,positive=true); "></div>');
