

function openWin(nUrl,nNom,w,h){
  // Ouvrir un popUp
  // Script gratuit des Trucsweb.com
  // - veuillez laisser cette remarque s.v.p.

  // Centrer le popUp
  var winl = (screen.width) ? (screen.width-w)/2 : 0;
  var wint = (screen.height) ? (screen.height-h)/2 : 0;
  var options = 'width='+w+',height='+h+',top='+wint+',left='+winl+',scrollbars=no,resizable=no';

  // Ouvrir le popUp
  neo=window.open(nUrl,nNom,options);

  // Forcer le focus sur un PopUp déjà ouvert
  if(neo.window.focus){neo.window.focus();}
}