<!--

function VD() {
  var DF=document.f ;
  if (DF.nombre.value=="") {
    alert ('Por favor anota tu nombre');
    DF.nombre.focus();
    return false;
  }
  arroba1 = DF.email.value.indexOf("@");
  punto1  = DF.email.value.lastIndexOf(".");
  ultimo1 = DF.email.value.length-1;

  if (arroba1 < 1 || punto1-arroba1 < 2 || ultimo1-punto1 > 3 || ultimo1-arroba1 < 2) {
   alert("El formato de tu E-Mail es INVÁLIDO. Por favor verifícalo.");
   document.f.email.focus();
   return false;
  }
  if (DF.asunto.value=="") {
    alert ('Por favor escribe el asunto o tema del que quieres escribirnos');
    DF.asunto.focus();
    return false;
  }
  if (DF.mensaje.value=="") {
    alert ('Por favor anota tu comentario');
    DF.mensaje.focus();
    return false;
  }
return true;
}
//-->
