///////////////////////////////////////////////
////////// EXIT FRONTEND //////////////////////
///////////////////////////////////////////////

function _logout_exit(){
    
    $.ajax({
        url: "/SERVLETS/FRONT/LOGIN",
        data: "exit=logout",
        success: function(){
           location.href="index.jsp";
        },
        error: function(){
            _prompts_ajax_error("FRONT > LOGO-1");
        }
    });
}
