/* Popup info membre*/
function popupMember (url,width,height) {
    var name = "popupmember";
    var options = "height="+height+",width="+width+",toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=no";
    a = window.open (url, name, options);
    a.focus();
}


