//<![CDATA[
function InsertFlashObject(iWidth, iHeight, szSwfUrl, szWMode)
{
  document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
  document.writeln('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"');
  document.writeln('  id="' + szSwfUrl.replace("/", "_") + '"');
  document.writeln('  width="' + iWidth + '" height="' + iHeight + '">');
  document.writeln('  <param name="movie" value="' + szSwfUrl + '" />');
  document.writeln('  <param name="quality" value="high" />');
  document.writeln('  <param name="wmode" value="' + szWMode + '" />');
  if (typeof m_szFlashVars != 'undefined')
  {
    if (m_szFlashVars != "")
      document.writeln('  <param name="FlashVars" value="' + m_szFlashVars + '" />');
  }
  document.writeln('  <param name="allowscriptaccess" value="always" />');
  document.writeln('  <embed type="application/x-shockwave-flash"');
  document.writeln('    pluginspage="http://www.macromedia.com/go/getflashplayer"');
  document.writeln('    name="swfMain"');
  document.writeln('    width="' + iWidth + '" height="' + iHeight + '"');
  document.writeln('    src="' + szSwfUrl + '"');
  document.writeln('    quality="high"');
  document.writeln('    swliveconnect="true"');
  document.writeln('    allowscriptaccess="always"');
  if (typeof m_szFlashVars != 'undefined')
  {
    if (m_szFlashVars != "")
      document.writeln('  FlashVars="' + m_szFlashVars + '"');
  }
  document.writeln('    wmode="' + szWMode + '">');
  document.writeln('    <noembed>');
  document.writeln('    </noembed>');
  document.writeln('  </embed>');
  document.writeln('</object>');
}
//]]>