// JavaScript Document

var undefined;



function LinkAlert(URL)
	{
	BANK_NAME = "First National Bank";
	MSG =       "You are leaving "+BANK_NAME+"'s website and will be redirected to another site. ";
	MSG = MSG + ""+BANK_NAME+" makes no endorsements 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 "+BANK_NAME+".";
	if (URL!=undefined) 
		{
		if (confirm(MSG)) window.open(URL,"_blank");
		}
	else return confirm(MSG);
	}

function LaunchCalc(URL)
	{
	window.open (URL,'myCalculator','width=580,height=450');
	}