// JavaScript Document
function FrontPage_Form1_Validator(theForm)
{
if (theForm.email.value == "")
  {
  alert("Attenzione: devi inserire la mail");
  theForm.email.focus();
  return (false);
  }
  
  if (theForm.pwd.value == "")
  {
  alert("Attenzione: devi inserire la password");
  theForm.pwd.focus();
  return (false);
  }
  
 
 
  return (true);
  };

