// JavaScript Documentvar undefined;function LinkAlert(URL,target,type) {	BankName = "Providence Postal FCU"	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.";	MSG[0] = "You are leaving the " + BankName + " web site and linking to an alternate web site not operated by the credit union.  " + BankName + " is not responsible for the content of the alternate web site. The credit union does not represent either the third party or the member if the two enter into a transaction. Privacy and security policies may differ from those practiced by " + BankName + "."		myTarget = "_self";	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(x,y,scrollbar) {	if (x==undefined) x = 640;	if (y==undefined) y = 400;	if (scrollbar==undefined) scrollbar = "yes";	window.open("","launch","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+scrollbar+",resizable=yes,width="+x+",height="+y+"");	}