function LinkAlert(URL)
	{
	BankName = "First National Bank & Trust"
	MSG =       "You are leaving " + BankName + "'s website and will be redirected to another site. ";
	MSG = MSG + BankName + " makes no endorsement or claims about the accuracy or content of ";
	MSG = MSG + "the information contained in these sites.  The security and privacy policies on ";
	MSG = MSG + "these sites may be different than those of " + BankName + ".";
	MSG = MSG + "\n\n";
	MSG = MSG + "You are being redirected to: \n" + URL;
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}