// JavaScript Document

function LinkAlert(URL)
	{
	BankName = "Citizens Progressive 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);
	}
