// JavaScript Document
function FrontPage_Form1_Validator(theForm)
{
if (theForm.email.value == "")
  {
  alert("Attention: you have to fill email field");
  theForm.email.focus();
  return (false);
  }
  
  if (theForm.question.value == "")
  {
  alert("Attention: you have to fill question field");
  theForm.question.focus();
  return (false);
  }
  
 
 
  return (true);
  };

