// JavaScript Documentvar undefined;function LinkAlert(URL,target,type)	{	BankName = "City Bank and Trust Company"	MSG = new Array();	MSG[0] = "You are now leaving the " + BankName + " web site. Neither City Bank 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');	}