function openNewWindow(image, imgWidth, imgHeight, scrollbars, title) {

  // left=30,top=30,
  
  newWindow = open('','Image','width=' + imgWidth + ',height=' + imgHeight + ',toolbar=No,location=No,' + scrollbars + ',status=No,resizable=No,fullscreen=No');
  
  newWindow.document.open();
  
  newWindow.document.write("<html>");
  newWindow.document.write("  <head>");
  newWindow.document.write("    <title>" + title + "</title>");
  newWindow.document.write("    <link rel=\"stylesheet\" type=\"text/css\" media=\"all\" href=\"css/jswindow.css\" />");
  newWindow.document.write("  </head>");
  newWindow.document.write("  <body>");
  newWindow.document.write("    <a href=\"#\" onClick=\"self.close();\"><img src=\"" + image + "\" width=\"" + imgWidth + "\" height=\"" + imgHeight + "\" alt=\"\" /></a>");
  newWindow.document.write("  </body>");
  newWindow.document.write("</html>");
  
  newWindow.document.close();
  newWindow.focus();
}
