function showDisclaimer(url){
var content = new Array();
var index = 0;
content[index++] = '<h2>Third Party Site Disclaimer</h2>Links to Third-Party web sites are provided for member convenience only. By clicking on a third party link, you will leave the Credit Union web site. \n\nThe New Trier Federal Credit Union does not endorse nor support the content of third party links. The Credit Union is not responsible for the content of a third-party web site. \n\nPrivacy and security policies may differ from those practiced by the Credit Union.';
content[index++] = '<br /><br /><br />';
content[index++] = '<div align="center"><a href="javascript:void(\'0\');" onclick="window.open(\''+url+'\');document.getElementById(\'popdiscl\').style.visibility = \'hidden\'">Continue</a>&nbsp;&nbsp;<a href="javascript:void(\'0\');" onclick="document.getElementById(\'popdiscl\').style.visibility = \'hidden\'">Decline</a></div></div>';	
document.getElementById("popdiscl").innerHTML = content.join("");
document.getElementById("popdiscl").style.visibility = "visible";
scrollTo(0, 0);
}


