
function popup(fle, mde){
   var win = window.open('', 'popup', 'location=no');

   with (win.document){
     open();

     writeln('<html>');
     writeln('  <head>');
     writeln('    <script language=JavaScript>');

     // preload image
     writeln('      if (document.images){');
     writeln('         document.images["popup_img"] = new Image(); ');
     writeln('         document.images["popup_img"].src="file?popup=1&fle=' + fle + '&mde=' + mde + '";');
     writeln('      }');
     writeln('      function resizeWindow(){');
     writeln('         var img = document.images["popup_img"];');
     writeln('         var body = document.body;');
     writeln('         window.resizeBy(img.width - body.clientWidth, img.height - body.clientHeight);');
     writeln('      }');
     writeln('    </script>');
     writeln('  </head>');
     writeln('  <body leftmargin=0 topmargin=0 onload="resizeWindow()">');
     writeln('    <img src="file?popup=1&fle=' + fle + '&mde=' + mde + '" name="popup_img">');
     writeln('  </body>');
     writeln('</html>');

     close();
   }

   win.focus();
}



