// JavaScript Document

function LinkAlert(URL)
	{
	BankName = "Peoples Bank";
	MSG =       "You are leaving " + BankName + " website and will be redirected to another site. " + BankName + " makes no endorsements or claims about the accuracy or content of the information contained in these sites. The security and privacy policies on these sites may be different than those of " + BankName + ".";
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}
	
	function LinkAlert2(URL)
	{
	MSG =       "For your protection, please do not submit account numbers, social security numbers, balances, or other confidential information through this non-secure email service.  In addition, please do not send any time sensitive, action oriented request through this email services.  Requests such as these can be made through secure messaging within our online banking system.";
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}