﻿function SwfPrint(furl,fwidth,fheight,transoption,fsub) {
   document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="'+ fwidth +'" height="' + fheight +'" align="middle">');
   document.write('<param name="movie" value="'+ furl +'"/>');
   if (transoption == "t") {
      document.write('<param name="wmode" value="transparent"/>');
   }
   else if (transoption == "o") {
      document.write('<param name="wmode" value="opaque"/>');
   }
   document.write('<!-- Hixie method -->');
   document.write('<!--[if !IE]> <-->');
   document.write('<object type="application/x-shockwave-flash" data="'+ furl +'" width="'+ fwidth +'" height="' + fheight +'"');
   if (transoption == "t") {
      document.write('wmode="transparent"');
   }
   else if (transoption == "o") {
      document.write('wmode="opaque"');
   }
   document.write('>');
   document.write(document.getElementById(fsub).innerHTML);
   document.write('</object>');
   document.write('<!--> <![endif]-->');
   document.write('</object>');
}
