// JavaScript Documentvar undefined;function Calculator(myURL)	{	myBase = "https://gateway.fundsxpress.com/calculators/";	window.open(myBase + myURL,'','width=585,height=450,scrollbars=yes,resizable=yes');	}function LinkAlert(URL,target)	{	BankName = "Evergreen National Bank"	MSG = "The " + BankName + " web site provides links to other web sites ";	MSG = MSG + "for convenience and informational purposes only. Users should ";	MSG = MSG + "be aware that when you select a link on the " + BankName + "'s web ";	MSG = MSG + "site to an external web site, they are leaving " + BankName + "'s site.";	MSG = MSG + "The security and privacy policies on these sites may be different than ";	MSG = MSG + BankName + ". Any of the linked third party websites may provide less ";	MSG = MSG + "security than " + BankName + "'s website.\n\n";	MSG = MSG + "Linked sites are not under the control of " + BankName + ". ";	MSG = MSG + BankName + " is not responsible for the contents of any linked site ";	MSG = MSG + "or any link contained in a linked site, or any changes or updates ";	MSG = MSG + "to such sites. The inclusion of a link does not imply endorsement ";	MSG = MSG + "by " + BankName + " of the site, its content, advertisers or sponsors. ";	MSG = MSG + "External sites may contain information that is copyrighted with ";	MSG = MSG + "restrictions on reuse. Permission to use copyrighted materials must ";	MSG = MSG + "be obtained from the original source and cannot be obtained ";	MSG = MSG + "from " + BankName + ". Evergreen National Bank is not liable for any failure of products or services advertised on this site.";		myTarget = "_blank";	if (target!=undefined) myTarget = target;	if (confirm(MSG)) window.open(URL,myTarget);	}	// This function loops through all the hyperlinks in a document and assigns// the LinkAlert function to each weather.com link as an event handler.  Don't call it// before the document is parsed and the links are all defined.  It is best// to call it from the onload event handler of a <body> tag.function confirmAllLinks() {  for(var i = 0; i < document.links.length; i++) {    this_href = document.links[i].href;	if (this_href.indexOf("weather.com")>0) {		document.links[i].href = "javascript:LinkAlert('"+this_href+"');"		//document.links[i].onclick = confirmLink;		document.links[i].target = "_self";	}  }}window.onload = confirmAllLinks;	