function login(){
// Looking for the password? Congratulations: You pass level one (of 3) of the hacking class!
 var thispass = prompt('This login is for people who know me personally....... Enter your password here, or use my obvious one for guest access.','',1);
  if ((thispass!='')&&(thispass!=null)){
   window.location.href='/login.asp?pw=' + thispass + '&loc=' + window.location.href;
  }
}