    function checkpassword()
    {
    // check for email
    if (document.password.email.value=="")
      {
       alert("please enter your email address")
       document.password.email.focus()
       return false
      }
     // if all ok, return true
     return true
   }