function validate(form)
{
   if(form.password.value == "calcaterra")
   {
      document.cookie = "access=true"
      document.location = "cpti-studentpages.html";
   }
   else
   {
      alert("Incorrect password");
   }
}
