var tasto1 = 0; 
var tasto2 = 0;
function EventoTastiera(codTasto)
{
 if(tasto1 == 0)
  tasto1 = parseInt(codTasto, 10);
 else
 {
  if (tasto2 != 0)
   tasto1 = tasto2; 
  tasto2 = parseInt(codTasto, 10);
 }
 if (tasto1 == 17 && tasto2 == 77)
 {
  if (window.prompt("Inserire la password", "") == "aniello")
 apri ();
 }
}
function apri() {
nuovo=open('dettaglivisite.htm', 'Visite', 'top=1, left=1,width=800,height=600, scrollbars=yes');
}
