// where to go if wrong password...    
var wrong="http://www.higiene.edu.uy/index.php";    
// password...    
var password="salasih";    
// prompts the user this...    
var name = prompt("Para visualizar esta pagina 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 --> 