//This function opens a window to display an image with a print and close button

function display_image(selection, selectionname, width, height) {
    attributes = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0,width=' + width + ' height=' + height + '"';
   PreView = window.open("", "Preview", attributes);
   PreView.document.open();
   PreView.document.write("<HTML><HEAD>");
   PreView.document.write("<TITLE>Preview</TITLE>");
   PreView.document.write("</HEAD><BODY BGCOLOR=FFFFFF TEXT=000000>");
   PreView.document.write("<FORM><CENTER><B><FONT SIZE=+1>" + 
selectionname + "</FONT></B><HR>");
   PreView.document.write("<IMG HSPACE=0 VSPACE=0 " +
"SRC='" +  selection + "'>");
   PreView.document.write("<HR><FORM><INPUT TYPE='button' VALUE='Close' " +
"onClick='window.close()'></FORM>");
   PreView.document.write("<a href='' onClick='window.print();return false'>");
//   PreView.document.write("<IMG alt=' ' 
//src='/NR/rdonlyres/2C1B0F1D-851A-49E6-9F70-960D5A7265EF/0/printer.gif' 
//border=0 width='24' height='22'></a>");
  PreView.document.write("<img border='0' src='/NR/rdonlyres/2C1B0F1D-851A-49E6-9F70-960D5A7265EF/0/printer.gif' width='24' height='22'></a>");
   PreView.document.write("</CENTER>");
   PreView.document.write("</BODY></HTML>");
   PreView.document.close();
   PreView.focus();
   PreView.moveTo(0,0);

} // display_image
