/***************************************************
 *  Fonction d'affichage de popup
 *  la popup est affichée sans barre d'outils, sans barre de navigation
 ***************************************************/
function openPopup(url, nomOpener, width, height, scrollable, resizable, menubar) {
    var properties = "location=no,";
    properties += "menubar=" + menubar + ",";
    properties += "status=no,";
    properties += "toolbar=no,";
    properties += "directories=no,";
    properties += "scrollbars=" + scrollable + ",";
    properties += "resizable=" + resizable + ",";
    properties += "height=" + height + ",";
    properties += "width=" + width;
    window.name = nomOpener;
    
    popup = window.open(url, "popup", properties);
    popup.focus();
    
}
