var type = ',location=0,menubar=0,resizable=0,status=0,toolbar=0';
function popup(url,nom,largeur,hauteur,defile)
{
  if (!nom)
    nom = '';
  if (!type)
    type = '';
  else
    type = ',' + type;
  var x = Math.round((screen.availWidth - largeur) / 2);
  var y = Math.round((screen.availHeight - hauteur) / 2);
  type = 'left=' + x + ',top=' + y + ',width=' + largeur + ',height=' + hauteur + ',scrollbars=' + defile + type;
  return window.open (url,nom,type);
}