function ValidateFormData(form)
{
  if (!CheckVariable(form.varEmailAddress,"str","Please input your email address.")) { return false; }
  if (!CheckVariable(form.varEmailAddress,"email","Please input a valid email address.")) { return false; }
  if (!CheckVariable(form.varZIP,"select","Please select your ZIP code, county, and municipality.")) { return false; }
  return true;
}

