function contact_Validator(theForm)
{

  if (theForm.NameFull.value == "")
  {
    alert("Please enter your Full Name.");
    theForm.NameFull.focus();
    return (false);
  }
  
  if (theForm.NameCompany.value == "")
  {
    alert("Please enter your Company Name.");
    theForm.NameCompany.focus();
    return (false);
  }

  if (theForm.Phone.value == "")
  {
    alert("Please enter your Phone Number.");
    theForm.Phone.focus();
    return (false);
  }

  if ((theForm.Email.value.indexOf('@',0) == -1) || (theForm.Email.value.indexOf('.',0) == -1))
  {
    alert("Please verify that your Email Address is correctly formatted.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Message.value == "")
  {
    alert("Please enter your Message.");
    theForm.Message.focus();
    return (false);
  }
 
  return(true);
  }
