function SetFocus(){	document.getElementById("id").focus();}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,500);			}			else void myOpen(linkURL,500,500);		break;	}}/* =Disclaimers----------------------------------------------- */var emailDisclaimer = "Email disclaimer goes here";var linkDisclaimer = "NOTICE: You are leaving the Lotus Bank website. This linked website is provided for your convenience. Lotus Bank is not responsible or liable for the content, information or security; the failure of any products or services advertised or promoted to this linked website and any issues that may arise out of the website's privacy policy. You should not regard any information on this linked website as expressing facts about, or the opinions or beliefs of, Lotus Bank.";function mailConfirm(passedAddress) {	if (confirm(emailDisclaimer)) {		window.location.href = passedAddress;	}}function disclaimer(passedWebsite) {	var oWin;	if (confirm(linkDisclaimer)) {		oWin = window.open(passedWebsite,"newWindow");		if (oWin === null || typeof(oWin) === "undefined") {			window.location.href = passedWebsite;		} else {			return true;		}	}}