// JavaScript Document
function checkEmail(Comments) {
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(Comments.email.value)){
return (true)
}
alert("Correo invalido. Ingreselo nuevamente por favor.")
return (false)
}