    function ouvrir(fichier, titre, w, h, rs, lb, mb, sb, sl) {
       var popstyle = 'width='+w+', height='+h+', resizable='+rs+', location='+no+', menubar='+mb+', status='+sb+', scrollbars='+sl+'';
       window.open(fichier, titre, popstyle);
    }
    
    function zoom(fichier, titre, w, h) {
       var popstyle = 'width='+w+', height='+h+', resizable=no, location=no, menubar=no, status=no, scrollbars=no';
       window.open(fichier, titre, popstyle);
    }

