
// documento cargado
$(document).ready(function() {
    
    // validación y envío del formulario del boletín
    $("#FBoletin").validate({
        rules: {
            "boletin-email": { required: true, email: true }
        },
        errorLabelContainer: "#boletin-error",
        submitHandler: function(form) {
            ir("/registro.html?email=" + $("#boletin-email").val());
            return false;
        }
    });
});

// redirección
function ir(url)
{
    window.location.href = url;
}

function popup(url, ancho, alto)
{
    window.open(url, 'popup', 'width='+ancho+',height='+alto+',resizable=yes,scrollbars=auto,location=yes');
}
