function validarEmail(valor) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(valor)){
		//alert("La direccion de email " + valor + " es correcta.");
		return true;
	} else {
		alert("La direccion de email es incorrecta.");
		return false;
	}
}


