function popup(URL,WDT,HGT) {
  day = new Date();
  id = day.getTime();
  var TOP = (screen.height-HGT)/2;
  var LEFT = (screen.width-WDT)/2;
  eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+WDT+',height='+HGT+',left='+LEFT+',top='+TOP);");
} 

function popup_img(IMG,WDT,HGT) {
  var ww, wh;
  ww = WDT + 40;
  wh = HGT + 60;
  day = new Date();
  id = day.getTime();
  var TOP = (screen.height-HGT)/2;
  var LEFT = (screen.width-WDT)/2;
  wid = open('',id, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+ww+',height='+wh+',left='+LEFT+',top='+TOP);
  wid.focus();
  wid.document.open();
  wid.document.write('<html><head><title>photo</title></head>');
  wid.document.write('<body bgcolor="#D8D4D5" text="#666666" ');
  wid.document.write('leftmargin=10 topmargin=10 ');
  wid.document.write('marginwidth=10 marginheight=10>');
  wid.document.write('<div align="center"><img class=image src="'+IMG+'" width='+WDT+' height='+HGT+' ');
  wid.document.write('border=0 alt="photo">');
  wid.document.write('<br>&nbsp;<br>');
  wid.document.write('<a href="javascript:window.close()">');
  wid.document.write('<img src="/images/popup_butt_close.gif" width=100 ');
  wid.document.write('height=18 border=0 alt="Fermer le popup"></a></div>');
  wid.document.write('</body></html>');
  wid.document.close();
} 



