//<script language="JavaScript">
function rev_contacto() {
if(contacto.nombre.value.length == "") {
alert("Ingresa Tu Nombre.") ;
return false ;
}
if(contacto.email.value.length =="") {
alert("Debes Escribir Tu Em@il.") ;
return false ;
}
if(!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(contacto.email.value)) {
alert("Correo Electronico No Valido.") ;
return false ;
}
if(contacto.mensaje.value =="") {
alert("Debes Escribir Un Mensaje") ;
return false ;
}
}

function rev_recome(){
if(contacto.mail.value.length =="") {
alert("Debes Escribir Un Em@il.") ;
return false ;
}
if(!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(contacto.mail.value)) {
alert("Correo Electronico No Valido.") ;
return false ;
}
}
//</script>

