// GESTION DES POPUPS //
function popup(fichier,largeur,hauteur) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  var position="top="+top+",left="+left+",width="+largeur+",height="+hauteur
  win=window.open(fichier,'',position+',scrollbars=yes');
  win.document.close();
} 
