function Validate(theForm)
{
  if (theForm.Email.value > ""){
		if (emailChecking(theForm.Email)==false)
			return (false);
		}
		
	var Phone = theForm.Phone.value
	if ((Phone.length <= 13) && (Phone.length > 0)){
		return (false);
	}
  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.Email.value == "") && (theForm.Phone.value == ""))
  {
    alert("Please enter a value for the \"Email\" or \"Phone\" fields.");
    theForm.Email.focus();
    return (false);
  }

  if (theForm.Question.value == "")
  {
    alert("Please enter a value for the \"Your Comments\" field.");
    theForm.Question.focus();
    return (false);
  }
  return (true);
}
