function disclaimer(passedWebsite){	if(confirm('You are now leaving the Orrstown Bank site. The site you have chosen is independent from Orrstown Bank. Orrstown Bank does not control these sites and does not guarantee the accuracy, completeness, or efficiency or timeliness of the information contained therein.'))	{		window.open(passedWebsite,'NewWin','toolbar,status,resizable,location,scrollbars,menubar')	}}function evalLink(linkURL,linkTarget,disclaimerFlag,disclaimerText) {	var regexp = /&quote;/g;	disclaimerText = disclaimerText.replace(regexp,"\"");	switch(linkTarget) {		case 0: //Same window			if(disclaimerFlag == 1) {				if(confirm(disclaimerText)) window.location = linkURL;			}else window.location = linkURL;				break;		case 1: // New Window			if(disclaimerFlag == 1) {				if(confirm(disclaimerText)) window.open(linkURL);			}else window.open(linkURL);				break;		case 2: // Popup Window			if(disclaimerFlag == 1) {				if(confirm(disclaimerText)) void myOpen(linkURL,500,450);			}else void myOpen(linkURL,500,450);		break;	}}function myOpen(page,width,height) {    if (navigator.appName == 'Netscape') {        adjWidth = width+10;        adjHeight = height+10;    }    else {        adjWidth = width;        adjHeight = height;    }       window.open(page,'windowName','width=' + adjWidth + ',height=' + adjHeight + ',toolbar=no,location=no,directories=no,resizable=yes,status=yes,menubar=yes,scrollbars=yes');}
