function display(image) {
  document.open();
  document.write("<?xml version=\"1.0\"?>");
  document.write("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\"");
  document.write("\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">");
  document.write("<html xmlns=\"http://www.w3.org/1999/xhtml\">");
  document.write("<head>");
  document.write("<title>Hank III - Photos</title>");
  document.write("</head>");
  document.write("<body bgcolor=\"#000000\">");
  document.write("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"  align=\"center\">");
  document.write("<tr>");
  document.write("<td>");
  document.write("<div align=\"center\">");
  document.write("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"2\">");
  document.write("<tr bgcolor=\"#999999\">");
  document.write("<td>");
  document.write("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
  document.write("<tr bgcolor=\"#000000\">");
  document.write("<td>");
  document.write("<img src=\"images/");
  document.write(image);
  document.write("\" alt=\"\">");
  document.write("</td>");
  document.write("</tr>");
  document.write("</table>");
  document.write("</td>");
  document.write("</tr>");
  document.write("</table>");
  document.write("</div>");
  document.write("</td>");
  document.write("</tr>");
  document.write("<tr>");
  document.write("<td height=\"2\">");
  document.write("<br />");
  document.write("<br />");
  document.write("<div align=\"center\">");
  document.write("<font face=\"Verdana, Arial, Helvetica, sans-serif\">");
  document.write("<b>");
  document.write("<font size=\"2\">");
  document.write("<a href=\"javascript:history.back()\">");
  document.write("<font color=\"#FFFFFF\">Back</font>");
  document.write("</a>");
  document.write("</font>");
  document.write("</b>");
  document.write("</font>");
  document.write("</div>");
  document.write("</td>");
  document.write("</tr>");
  document.write("</table>");
  document.write("</body>");
  document.write("</html>");
  document.close();
}

