  <!-- 
  function PicPop(pic, w, h){
   myPic = open("","Picture","width="+w+", height="+h+", titlebar=no, status=no, menubar=no");
   myPic.document.open();

   myPic.document.write("<html><head><title>Picture Viewer</title></head>");
   myPic.document.write("<body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0 onBlur='javascript: window.close();'>");
   myPic.document.write("<a href='javascript: void(0);' onclick='javascript: window.close();'><img src="+pic+" border=0>");
   myPic.document.write("</body></html>");

   myPic.document.close();
  }
  
  function ChartPop(chart, w, h){
   myPic = open("","Chart","width="+w+", height="+h+", titlebar=no, status=no, menubar=no");
   myPic.document.open();

   myPic.document.write("<html><head><title>Chart Viewer</title></head>");
   myPic.document.write("<body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginwidth=0 marginheight=0 onBlur='javascript: window.close();'>");
   myPic.document.write("<a href='javascript: void(0);' onclick='javascript: window.close();'><img src="+chart+" border=0>");
   myPic.document.write("</body></html>");

   myPic.document.close();
  }  
  -->