<!-- Begin
function password() {
var testV = 1;
var pass1 = prompt('Please Enter Your Password','');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1 == "Raft357") {
alert('Congratulations! You Got it Right!');


//  Change the following URL to your protected filename

window.open('protectedpage.htm');
break;
} 
testV+=1;
var pass1 = 
prompt('ACCESS DENIED - Password Incorrect, Please Try Again - Email Ron.','Enter Password');
}
if (pass1!="Raft357" & testV ==3)               
history.go(-1);
return " ";
}
// End -->

