function Form_Validator(theForm)
{
  if (theForm.domain.value == "")
  {
    alert("Please enter a value for the \"domain\" field.");
    theForm.domain.focus();
    return (false);
  }

  if (theForm.domain.value.length < 6)
  {
    alert("Please enter a valid name in the \"domain\" field.");
    theForm.domain.focus();
    return (false);
  }

  return (true);
}