function password() {
var testV = 1;
var pass1 = prompt('Please enter the password.','');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1 == "facone") {
alert('Thanks. You may now enter the FAC administration site.');
window.open('http://www.facone.org/admin/');
break;
} 
testV+=1;
var pass1 = 
prompt('Access Denied - Password Incorrect, Please Try Again.','Password');
}
if (pass1!="password" & testV ==3)               
history.go(-1);
return " ";
}
