function Form6_Validator(theForm)
{

  if (theForm.famname.value == "")
  {
    alert("Gelieve uw naam in te vullen.");
    theForm.famname.focus();
    return (false);
  }

  if (theForm.company.value == "")
  {
    alert("Gelieve de naam van uw bedrijf in te vullen.");
    theForm.company.focus();
    return (false);
  }
    
    return (true);
}

