// ********* closeWindow function ************function closeWindow() {window.close();}// ********* pass window function ************function passWindow(copy, copy2){var theCookie = document.cookie;var tester = theCookie.indexOf("pword=");		var start = tester + 6;		var testval = theCookie.substr(start, 5);	if(testval=="bingo"){		window.alert("Hey, Welcome back!");		document.location=copy2;		}	else{	window.open(copy,"","width=455,height=380,screenX=200,screenY=50, left=200,top=50,scrollbars=yes");			}		}