function Form1_Validator(theForm)
{

  if (theForm.famname.value == "")
  {
    alert("Please fill in your name.");
    theForm.famname.focus();
    return (false);
  }

  if (theForm.company.value == "")
  {
    alert("Please fill in your company name.");
    theForm.company.focus();
    return (false);
  }
    
    return (true);
}

