function RunFlash(file, width, height)
{
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"');
  document.write('width="' + width + '" height="' + height + '">');
  document.write('<param value="' + file + '" name="movie" />');
  document.write('<param value="transparent" name="wmode" />');
  document.write('  <embed width="' + width + '" height="' + height + '"');
  document.write('    wmode="transparent" ');
  document.write('    type="application/x-shockwave-flash"');
  document.write('    src="' + file + '">');
  document.write('  </embed>');
  document.write('</object>');
}


function GetRunFlashCode(file, width, height)
{
  var html = '';
  html += '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"'
  html += 'width="' + width + '" height="' + height + '">'
  html += '<param value="' + file + '" name="movie" />'
  html += '<param value="transparent" name="wmode" />'
  html += '  <embed width="' + width + '" height="' + height + '"'
  html += '    wmode="transparent" '
  html += '    type="application/x-shockwave-flash"'
  html += '    src="' + file + '">'
  html += '  </embed>'
  html += '</object>'
  
  return html;
}
