function ml_displayFlash(swfFile, width, height)
{
   document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+width+'" height="'+height+'">\n');
   document.write('<param name="movie" value="' + swfFile + '" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<param name="wmode" value="opaque" />\n');
   document.write('<embed src="' + swfFile + '" quality="high" wmode="opaque" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
   document.write('</object>\n');
}