<!-- Begin
function password() {
var testV = 1;
var pass1 = prompt('Please Enter Your Password','');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1 == "life") {
alert('You Got it Right!');
window.open('emotional_healing_long_questionnaire.htm');
break;
} 
testV+=1;
var pass1 = 
prompt('Access Denied - Password Incorrect, Please Try Again.','');
}
if (pass1!="life" & testV ==3)               
history.go(-1);
return " ";
}
// End -->