function Validator(theForm)
{

  if (theForm.name.value == "")
  {
    alert("Please enter your name!");
    theForm.name.focus();
    return (false);
  }

    
    
   if (theForm.email.value == "")
  {
    alert("Please enter your email");
    theForm.email.focus();
    return (false);
  }

 
  
  if (theForm.comment.value == "")
  {
    alert("Please enter your comments.");
    theForm.comment.focus();
    return (false);
  }

   if (theForm.code.value != "164")
  {
    alert("Please enter a 3 digit value in security code box.");
    theForm.code.focus();
    return (false);
  }

  
   return (true);
}
