
function validar() {
var f = document.formulario
var re=/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
var valor=document.getElementsByName('email')[0].value;

if(!re.exec(valor)){
alert("Debes introducir un formato válido de email.")
return false
}

else if (document.getElementsByName('nombre')[0].value =="") {
alert("Debes introducir un nombre para poder dirigirnos a ti.")
return false
}
else if (f.checkbox.checked == false) {
alert("Para acceder a nuestros servicios debes leer y aceptar la Política de Privacidad.")
return false
}

return true
}

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=150,height=50,left = 633,top = 359');");
}


