	function gotoSecrets() {
		var pwd = window.prompt("Please enter the secret passoword:","");
		if(pwd == "bowling") {
			parent.main.location = "secret.html";
		} else {
			parent.main.location = "badPwd.html";
		}
	}
