/*

global script functionality for site

2008-11-06	acp		created, added FP_popUpMsg_security

*/


//display msg when leaving site: 
//any changes to the msg can be made here vs. every applicable page (prior configuration)
function FP_popUpMsg_security() 
{
	var link_security_msg = "Notice: You are leaving Lee Bank\'s web site. Lee Bank, ";
	link_security_msg+= "including its employees and directors, are not responsible for the content or security of any linked site, ";
	link_security_msg+= "and does not have control over the content on any linked site. We are also not responsible for any issues ";
	link_security_msg+= "that may arise from the site or its privacy policy. The inclusion of a link does not imply or constitute ";
	link_security_msg+= "an endorsement by Lee Bank, its ownership or management, the products or services it offers, or any ";
	link_security_msg+= "advertisers or sponsors appearing on the linked sites.\r\n\r\nClick on OK to continue.";

	//simple alert needed; use confirm box in future?
	alert(link_security_msg);
}



