// JavaScript Documentvar undefined;var double_check;double_check = "";function LinkAlert(URL)	{	BankName = "The Citizens National Bank of SWO";	MSG =       "You are leaving the " + BankName + " website and will be redirected to another site. ";	MSG = MSG + BankName + " 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 " + BankName + ".";	// check for double action call to this function		if (double_check=="" || double_check!=URL) {		if (URL!=undefined) 			{			if (confirm(MSG)) {				double_check = URL;				window.open(URL,"_blank");				}			else {				double_check = URL;				setTimeout("double_check = ''",500);				}			}		else return confirm(MSG);		}	else double_check = "";	}function LaunchCalc(URL)	  	{		window.open(URL,'myCalculator','width=590,height=450,scrollbars=yes,resizable=yes');		}