 

var wrong="denied.html";    
// password...    
var password="45140";    
// prompts the user this...    
var name = prompt("Please Enter The Password","");    
// if... else statement... right, confirm this, wrong, go to wrong...    
if (name == password) document.location="8milk/index.htm"    
else {location.href=wrong}   



