// open image
function openimg(filename,width,height) {
  OpenImg = window.open("","OpenImg","toolbar=no,menubar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,width=384,height=288");
  OpenImg.document.writeln("<html>");
  OpenImg.document.writeln(" <head>");
  OpenImg.document.writeln("  <title>The Snapshot</title>");
  OpenImg.document.writeln(" </head>");
  OpenImg.document.writeln(" <body onload=\"imgsize()\" bgcolor=\"#FFFFFF\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
  OpenImg.document.writeln("  <img src=\"" + filename + "\"/>");
  OpenImg.document.writeln("  <script>");
  OpenImg.document.writeln("    function imgsize() { window.resizeTo(document.images[0].width, document.images[0].height); }");
  OpenImg.document.writeln("  </script>");
  OpenImg.document.writeln(" </body>");
  OpenImg.document.writeln("</html>");
  OpenImg.document.close();
  OpenImg.focus();
}


// random header
function rand_head() {
  rh = Math.round(Math.random()+1);
  document.write("<a href=\"index.html\"><img src=\"images/site/header_logo_top_" + rh + ".jpg\" width=\"202\" height=\"69\"/></a><img src=\"images/site/header_top_" + rh + ".jpg\" width=\"558\" height=\"69\"/>");
}