 function showWarning(url,target){
	if(!target)
	{
		target="_self";
	}
	
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<span class="header">Third Party Site Disclaimer</span><br />By accessing the noted link you will be leaving your financial institution\'s website and entering a website hosted by another party. Your financial institution has not approved this as a reliable partner site.  Please be advised that you will no longer be subject to, or under the protection of, the privacy and security policies of your financial institution\'s website. We encourage you to read and evaluate the privacy and security policies of the site you are entering, which may be different than those of your financial institution\'s.';
	content[index++] = '<br /><br /><br />';
	content[index++] = '<div align="center"><a href="'+url+'" target="'+target+'" 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.

}


function showEmailWarning(email_address){
	//content creation
	var content = new Array();
        var index = 0;
	content[index++] = '<span class="header">Email Disclaimer</span><br />E-mail messages sent over the Internet are not secure. Please do not include any account or personal information such as social security numbers in the message.';
	content[index++] = '<br /><br /><br />';
	content[index++] = '<div align="center"><a href="mailto:'+email_address+'" 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.
}

/* div for disclaimers */
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>');

/* end div for disclaimers */