<!-- JavaScript begins...  function checkPass(){    var password = "3fingerjack" ;   // The desired password (change it here!)    var message = "Enter now the Password";               // The message to show when the user is prompted for the password    var incmess = "Incorrect password! Access denied!";         // The message to show if the password is incorrect    var pw = prompt (message,"");    if (pw != password) {      alert (incmess);      window.history.back ();    }  }  // JavaScript ends -->