//<!--
function VerificarForm() {

  if(document.form1.mailN.value == "") {
    window.alert("Quien eres?");
    document.form1.mailN.focus();
    return false;
  }
  if(document.form1.mailE.value == "") {
    window.alert("Y como te escribimos? ");
    document.form1.mailE.focus();
    return false;
  }
  if(document.form1.mailA.value == "") {
    window.alert("Sobre que quieres hablar?");
    document.form1.mailA.focus();
    return false;
  }
  if(document.form1.mailT.value == "") {
    window.alert("Por favor, dinos algo...");
    document.form1.mailT.focus();
    return false;
  }  
  return true;
}
//-->
