
<!--

var ShowMessage="¡Por favor, llene todos los campos!";

function CheckInput(theForm)
{
  if (theForm.Name.value == "" || theForm.Name.value == " ")
  {
    alert(ShowMessage);
    theForm.Name.focus();
    return (false);
  }
  if (theForm.Company.value == "" || theForm.Company.value == " ")
  {
    alert(ShowMessage);
    theForm.Company.focus();
    return (false);
  }
  if (theForm.Email.value == "" || theForm.Email.value == " ")
  {
    alert(ShowMessage);
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Telephone.value == "" || theForm.Telephone.value == " ")
  {
    alert(ShowMessage);
    theForm.Telephone.focus();
    return (false);
  }
  if (theForm.Comment.value == "" || theForm.Comment.value == " ")
  {
    alert(ShowMessage);
    theForm.Comment.focus();
    return (false);
  }

  return (true);
}
//-->
