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="#F0F5E8" text="#000000" ');
  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/>');
  wid.document.write('<p align="right"><a style="font-size: 10px;" href="javascript:window.close()">');
  wid.document.write('Popup sluiten</a></div>');
  wid.document.write('</body></html>');
  wid.document.close();
} 




