<!--

function Form1_Validator(theForm)
{
  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Address.value == "")
  {
    alert("Please enter a value for the \"Address\" field.");
    theForm.Address.focus();
    return (false);
  }

  if (theForm.City.value == "")
  {
    alert("Please enter a value for the \"City\" field.");
    theForm.City.focus();
    return (false);
  }

  if (theForm.Zipcode.value == "")
  {
    alert("Please enter a value for the \"Zip Code\" field.");
    theForm.Zipcode.focus();
    return (false);
  }

  document.Form1.submit();
  
  return (true);
}

// -->

