// JavaScript Documentvar undefined;function LinkAlert(URL,target,type) {	BankName = "Bank of Abbeville and Trust Company"	MSG = new Array();	MSG[0] = "You are now leaving the " + BankName + " web site. Neither " + BankName + " nor any of its subsidiaries or affiliates are responsible for the content of any external web site.";		myTarget = "_blank";	if (target!=undefined) myTarget = target;	if (type!="" && type!=undefined) alert(MSG[type]);	else if (confirm(MSG[0])) window.open(URL,myTarget);	}function LaunchCalc(URL) {	window.open (URL,'myCalculator','width=580,height=450');	}function newWindow() {	window.open("","launch","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=640,height=400");	}