function IEFoo(Movie,Width,Height)
{
   document.write('<object\n');
   document.write('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"\n');
   document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0"\n');
   document.write('id="LICLogo"\n');
   document.write('width="'+Width+'" height="'+Height+'">\n');
   document.write('<param name="movie" value="'+Movie+'&hl=en">\n');
   document.write('<param name="quality" value="high">\n');
   document.write('<param name="allowscriptaccess" value="samedomain">\n');
   document.write('<embed\n');
   document.write('type="application/x-shockwave-flash"\n');
   document.write('pluginspage="http://www.macromedia.com/go/getflashplayer"\n');
   document.write('name="LICLogo"\n');
   document.write('width="'+Width+'" height="'+Height+'"\n');
   document.write('src="'+Movie+'"&hl=en\n');
   document.write('quality="high"\n');
   document.write('swliveconnect="true"');
   document.write('allowscriptaccess="samedomain">\n');
   document.write('<noembed>\n');
   document.write('</noembed>\n');
   document.write('</embed>\n');
   document.write('</object>\n');
}