// JavaScript Documentfunction LaunchCalc(URL)	{	window.open(URL,'myCalc','width=600,height=400,scrollbars=yes,resizable=yes');	}		function LinkAlert(type,URL){if (type=="email") msg = 'This email link uses your email client to send non secure emails. This email address is not secure. DO NOT send sensitive personal or financial information to First National Bank using this email address.';else msg="The First National Bank web site provides links to other web sites for convenience and informational purposes only. Users should be aware that when you select a link on the First National Bank's" +" web site to an external web site, they are leaving First National Bank's site. Linked sites are not under the control of First National Bank. First National Bank is not responsible for the contents" +" of any linked site or any link contained in a linked site, or any changes or updates to such sites. The inclusion of a link does not imply endorsement by First National Bank of the site, its" +" content, advertisers or sponsors. External sites may contain information that is copyrighted with restrictions on reuse. Permission to use copyrighted materials must be obtained from the" +" original source and cannot be obtained from First National Bank. Each third-party websites may have a privacy policy different from that of the First National Bank. The linked third-party" + " website(s) may provide less security than the First National Bank's website.";	if (type=="link") {		if (confirm(msg)) window.open(URL,"newwin");		}	else return confirm(msg);}