$(document).ready(function() {
    // RECUPERATION DE MOT DE PASSE
    $("#btnRecup").live("click", function() {
        var mail = $("#recup_mail").val();
        //alert(mail);
        if (mail != "") {
            $.ajax({
                type: "POST",
                data: "action=recup_pass&mail="+mail,
                url: "./lib/recup_pass.php",
                success: function(data) {
                    alert(data);
                    jQuery.facebox.close();
                },
                error: function() {
                    alert('Transfer Error thisL211');
                }
            });
        } else {
            alert("Veuillez entrer une adresse e-mail");
        }
    });
    ///////////////////////////////////
    //
    // BOUTON MOT DE PASSE OUBLIE
        $("#btn_fpass").click(function(){
            jQuery.facebox('<div>\n\
                                <div id="labelform">Adresse e-mail : </div>\n\
                                <div id="adinput"><input type="text" id="recup_mail" name="recup_mail" size="30"/><input type="submit" name="btnRecup" id="btnRecup"/></div>\n\
                            </div>');
        });
        ////////////////////////////////
});
    
