function validar_envia_cartalector(){ var editorial_tema = $('editorial_tema'); var editorial_nombre = $('editorial_nombre'); var editorial_email = $('editorial_email'); var editorial_texto = $('editorial_texto'); if (editorial_tema.value.length<1) { alert("Es necesario ingresar un Tema"); editorial_tema.focus(); return false; } else if (editorial_nombre.value.length<1) { alert("Es necesario ingresar un Nombre"); editorial_nombre.focus(); return false; } else if (editorial_email.value.length<1 || echeck(editorial_email.value)==false) { alert("Es necesario ingresar un e-mail vĂ¡lido"); editorial_email.focus(); return false; } else if (editorial_texto.value.length<1) { alert("Es necesario ingresar un Texto"); editorial_texto.focus(); return false; } else { return true; }; } $('enviarcarta').onsubmit = validar_envia_cartalector; function echeck(str) { var at="@"; var dot="."; var lat=str.indexOf(at); var lstr=str.length; var ldot=str.indexOf(dot); if ((str.indexOf(at)==-1) || ((str.indexOf(at)==-1 || str.indexOf(at)==0 || str.indexOf(at)==lstr)) || ((str.indexOf(dot)==-1 || str.indexOf(dot)==0 || str.indexOf(dot)==lstr)) || (str.indexOf(at,(lat+1))!=-1) || ((str.substring(lat-1,lat)==dot || str.substring(lat+1,lat+2)==dot)) || (str.indexOf(dot,(lat+2))==-1) || (str.indexOf(" ")!=-1)) { return false; } else { return true; }; }