function ShowPic(foto,breedte,hoogte) {
  myWin= open(foto, "Wintitle", "width=" + breedte + ",height=" + hoogte + ",status=no,toolbar=no,menubar=no");
}

function ShowPic2(foto,beschrijving,breedte,hoogte) {
  myWin= open("", "displayWindow", 
    "width=" + breedte + ",height=" + hoogte + ",status=no,toolbar=no,menubar=no");

  myWin.document.open();
  myWin.document.write("<html><head><title>");
  myWin.document.write(beschrijving);
  myWin.document.write("</title></head><body style='margin: 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>");
  myWin.document.close();  
}