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("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"><html><head><title>");
  myWin.document.write(beschrijving);
  myWin.document.write("</title></head><body style='margin: 0px;' onload='self.focus()'>");
  myWin.document.write("<center>");
  myWin.document.write("<img src='");
  myWin.document.write(foto);
  myWin.document.write("' alt='" + beschrijving + "' onclick='Javascript: parent.close()'>");
  myWin.document.write("</center>");
  myWin.document.write("</body></html>");

  // close the document - (not the window!)
  myWin.document.close();
}

function popUp(bestand,breedte,hoogte) {
  window.open(bestand,'Regiobrugge.be','width=' + breedte + ',height=' + hoogte + ',scrollbars=yes,toolbar=no,location=no');
}