// where to go if wrong password...    
var wrong="UTS.htm";    
// password...    
var password="CEFA2004";    
// prompts the user this...    
var name = prompt("Para visualizar esta página es necesario un password.\n \nIngrese el password correspondiente:");    
// if... else statement... right, confirm this, wrong, go to wrong...    
if (name == password) {}    
else {location.href=wrong}    
// END Script --> 