function document_onLoad() {
pw = prompt("Enter the site password");
if (pw != "lester")
{
  alert("Incorrect password - see the site administrator for the correct password");
  window.location.href = "index.html";
}
 }

