<!--
function openWin3(file, width, height) {
  myWin= window.open("", "displayWindow", 
    "height="+height+",width="+width+",top=40,left=254,status=no,toolbar=no,menubar=no");
  myWin.document.open();
  myWin.document.write("<html><head><title>&nbsp;");
  myWin.document.write("</title></head>");
  myWin.document.write("<body leftMargin=0 topMargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0>");
  myWin.document.write("<center><IMG SRC=");
  myWin.document.write(file);
  myWin.document.write(" BORDER=0 WIDTH=");
  myWin.document.write(width);
  myWin.document.write(" HEIGHT=");
  myWin.document.write(height);
  myWin.document.write(" onClick=window.close()></center>");
  myWin.document.write("</body></html>");
  myWin.document.close();  
}
// -->
