function passWord() {
	var testV = 1;
	var pass1 = prompt('Please enter the password you were given at the Command Seminar.',' ');
	while (testV < 5) {
		
		if (pass1.toLowerCase() == "superhero") {
			window.location="http://www.wosni.co.uk/command_papers.htm";
			break;
		}
		testV+=1;
		var pass1 = prompt('Password incorrect, please try again. (Hint: The DP, _________ or fall guy?)','Password');
	}
	if (pass1.toLowerCase()!="password" & testV ==5) {
		return " ";
	}
}

