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