function deconnect(ref) { var ajax = new PMP.util.pmpAjax("/_modules/compte/alias.ajax", "POST"); if(!ajax) { return; } ajax.appendData("action", "deconnecter"); // Deconnexion if( !PMP.common.isUndefined(ref)) { ajax.appendData("ref", ref); ajax.send(); if(ajax.reponse.etat) { window.location.href=''; } } return; }