function piczoom(afbeelding,breed,hoog)
 { 
winprops= 'width='+breed+',height='+hoog+',location=no,toolbar=no,menubar=no,scrollbars=no,resizable=no,status=0,dependent=yes'
var win = window.open("","Detail",winprops);
  win.document.write("<body leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
  win.document.write("<a href=\"javascript\:window.close()\";return true>");
  win.document.write("<IMG SRC=\""+afbeelding+"\"width=\""+ breed +"\" height=\""+ hoog +"\" border=\"0\">");
  win.document.write("</a><br>");
  win.document.write("</BODY>");
  win.document.close();
}
