
function Form1_Validator(theForm)
{

  if (theForm.em_wfs_formfield_1274674.value == "")
  {
	alert("Please supply your first name.");
    theForm.em_wfs_formfield_1274674.focus();
    return (false);
  }

 if (theForm.em_wfs_formfield_1274671.value == "" && theForm.em_wfs_formfield_1274673.value == "")
  {
	alert("Please supply either an email address or phone number.");
    theForm.em_wfs_formfield_1274671.focus();
    return (false);
  }

  return (true);
}

