function gateKeeper()
{
   var password = '';
   password=prompt('Please enter your password:','');
   if (password == "kelly1101") {
      location.href="Isumi's%20Room/Isumi's%20Room.htm";
   }
   else {
      location.href="index.htm";
   }
}
