function valida_envia(){ if (document.f.nombre.value.length==0){ alert("Escriba su nombre por favor")
document.f.nombre.focus()
return 0;}
if (document.f.telefono.value.length==0){ alert("Escriba su telefono por favor")
document.f.telefono.focus()
return 0;}
if (document.f.email.value.length==0){ alert("Escriba su email por favor")
document.f.email.focus()
return 0;}
if (document.f.mensaje.value.length==0){ alert("Escriba su mensaje por favor")
document.f.mensaje.focus()
return 0;}
document.f.submit();}
