
var password = ''

function Pass() {
password = prompt('Please enter your password:','');
if (password != null) {
  if (password != '') {
    if (password =='scrambot') {
       location.href= password + ".html";
       alert("Authenticated!");
	   }
	else {
	    alert("An Invalid Password was Entered!");
		 }
	 }
  } 
if (password == '') {
 alert("No Password was entered.");
 }
}
