function validarCorreo(valor) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valor)){
		return (true)
	} else {
		alert("La direcci&oacute;n de correo electr&oacute;nico es incorrecta.");
		return (false);
	}

}
