function fncValidateContactForm(theForm)
{


  if (theForm.FirstName.value == "")
  {
    alert("Please enter a value for the \"First name\" field.");
    theForm.FirstName.focus();
    return (false);
  }

  if (theForm.LastName.value == "")
  {
    alert("Please enter a value for the \"Last name\" field.");
    theForm.LastName.focus();
    return (false);
  }

  if (theForm.Phone.value == "")
  {
    alert("Please enter a value for the \"Phone\" field.");
    theForm.Phone.focus();
    return (false);
  }

  return (true);


}