﻿jQuery(document).ready(function () {
    $("#carteadherentbtn").bind("click", function () {
        $("#carteadherenterr").hide();
        var ca = $("#carteadherentno").val();
        if (ca.length != 8) {
            $("#carteadherenterr").show();
            return false;
        }
        var isEntier = /^\d+$/;
        if (!isEntier.test(ca)) {
            $("#carteadherenterr").show();
            return false;
        }
        window.open("https://www.almerys.com/proximityResearch/RechercherPSProximite.do?dispatch=defaut&productId=00060&i=R0ZN");



    });
});
