function showImage (imageSource)
{
  imageWindow
     = window.open
          ("", "displayWindow", "scrollbars=yes, resizable=1, width=800, height=600");
  imageWindow.document.open ();
  imageWindow.document.writeln
     ("  <html>\n"
      + "<head>\n" 
      + " <title>" + imageSource + "</title>\n"
      + "</head>\n"
      + "<body bgcolor=\"#EEEEEE\">\n"
      + "<form>\n"
      + "<table width=\"800\" cellspacing=\"0\">\n"
      + " <tr>\n"
      + "  <td style=\"text-align: center;\"><input type=button value=\" Sluit dit venster \" onClick=\"window.close ();\" /></td>\n"
      + " </tr>\n"
      + "</table>\n"
      + "<p align=\"center\"><img src='" + imageSource + "' border=\"1\"></p>\n"
      + "</form>\n"
      + "</body>\n"
      + "</html>");
  imageWindow.document.close ();
}
