function ShowPic(foto,beschrijving,breedte,hoogte) {
  myWin= open("", "displayWindow", 
    "width=" + breedte + ",height=" + hoogte + ",status=no,toolbar=no,menubar=no");

  // open document for further output
  myWin.document.open();
  
  // create document
  myWin.document.write("<html><head><title>");
  myWin.document.write(beschrijving);
  myWin.document.write("</title></head><body style='margin-top: 0px; margin-left: 0px; margin-right: 0px; margin-bottom: 0px;'>");
  myWin.document.write("<center>");
  myWin.document.write("<img src='");
  myWin.document.write(foto);
  myWin.document.write("'>");
  myWin.document.write("</center>");
  myWin.document.write("</body></html>");

  // close the document - (not the window!)
  myWin.document.close();  
}
