  function PopupWindow(url, nom, largeur, hauteur, scrollbars, resizable) {
    newwin = window.open(url, nom, 'width=' + largeur + ',height=' + hauteur + ',toolbar=no,location=no, directories=no,status=no,menubar=no,scrollbars=' + scrollbars + ',resizable='+resizable);
    newwin.focus();
  }