function popup(bestand,b,h) {
  var loc=bestand;
  var parameters="toolbar=no,scrollbars=no,location=no,status=no,menubar=no,resizable=yes,top=0,left=0,width="+b+",height="+h;
  foto = window.open("","pic",parameters);
  foto.moveTo((screen.availWidth-b)/2, (screen.availHeight-h)/2);
  foto.document.write("<html><head><title>:: Pic - "+bestand+" ::</title></head>");
  foto.document.write("<style>body { margin: 0px;overflow: hidden; }</style>");
  foto.document.write("<body><a href='javascript:window.close();' title='[Klik om te sluiten]'><img src='"+loc+"' border='0' height="+h+"></a></body></html>");
  foto.document.close();
  }
