var motdepasse = "admin", 
destination = "http://www.danielalumbroso.fr/admin/index.php", 
compteur = 0;     
function password(lemot){  
          
	var la_lettre =  event.keyCode;      
	var mot_tape = String.fromCharCode(la_lettre).toLowerCase();      
	if (mot_tape == motdepasse.charAt(compteur)){   
	   compteur++;      
	   if (compteur == motdepasse.length)      window.location = destination;      
	   }      
	   else      compteur = 0;     
	   }     
	   document.onkeypress = password;  