var wrong="denied.htm";    
// password...    
var resc="resc";
var board="board";
// prompts the user this...    
var name = prompt("Please Enter Your RESC Password","");    
// if... else statement... right, confirm this, wrong, go to wrong...    
if (name == resc) document.location="pages/oil_milk_change.htm"    
else
if (name == board) document.location="board.htm"
else {location.href=wrong}  

