// JavaScript Document
function FrontPage_Form1_Validator(theForm)
{

if (theForm.email.value == "")
  {
  alert("Please insert your EMAIL");
  theForm.email.focus();
  return (false);
  }
  
  if (theForm.password.value == "")
  {
  alert("Please insert your PASSWORD");
  theForm.password.focus();
  return (false);
  }


  return (true);
  };

