<!-- hide


function openWin3(src, width, height) {
  myWin= open("","displayWindow", "width=500,height=400,status=yes,toolbar=yes,menubar=yes");
  myWin.document.open();
  myWin.document.write("<html><head><title>On-the-fly");
  myWin.document.write("</title></head><body>");
  myWin.document.write("<script>window.print();</script>");
  myWin.document.write("<img src="+src+" width="+width+" height="+height+"/>");
  myWin.document.write("");
  myWin.document.write("");
  myWin.document.write("");
  myWin.document.write("</body></html>");
  myWin.document.close();  
}

// -->
