/* author: seadonkey12@hotmail.com */
/* Creation date: 14/02/2006 */

function password() {
var testV = 1;
var pass1 = prompt('Please Enter The Home Hardware Access Code:','');
while (testV < 3) {
if (!pass1) 
history.go(-1);
if (pass1 == "home1964") {


window.location.href= "http://www.nrha.org/CRHA_Learning/index2.htm";
break;
} 
testV+=1;
var pass1 = 
prompt('Access Denied - Access Code Is Incorrect, Please Try Again.','Enter Access Code');
}
if (pass1!="home1964" & testV ==3){
alert('You Are Not Entering The Appropriate Access Code. For Assistance, Contact Anna Daynard In Dealer Education (ext. 6702)');               
window.location.href= "http://www.homextra.ca";
}
return " ";
}

