    function open_win(name)
    {
      var bodytext = "<html><head><title>NDCA-2006 photo page</title>";
      bodytext = bodytext.concat("<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\">");
      bodytext = bodytext.concat("</head><body>");
      bodytext = bodytext.concat("<p align=center><img src=\"");
      bodytext = bodytext.concat(name);
      bodytext = bodytext.concat("\">");
      bodytext = bodytext.concat("</body></html>");
      w = window.open("", "_blank", "width=800, height=700");
      w.document.write(bodytext);
      w.document.close();
    }

