function loadFlash(src, width, height, transparent)
{
  document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
  document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
  document.write('width="' + width + '" ');
  document.write('height="' + height + '" ');
  document.write('id="charts" ');
  document.write('align="">');
  
  if(transparent)
  {
  	document.write('<param name="wmode" value="transparent">');
  }
  
  document.write('<param name=movie value="' + src + '">');
  document.write('<param name=quality value="high">');
  document.write('<param name=bgcolor value="#f7f7f7">');
  
  document.write('<embed src="' + src + '" ');
  document.write('quality=high ');
  document.write('bgcolor=#f5f5f5 ');
  document.write('width="' + width + '" ');
  document.write('height="' + height + '" ');
  document.write('name="SmelinkWEB" ');
  document.write('align="" ');
  document.write('swLiveConnect="true" ');
  
  if(transparent)
  {
  	document.write('wmode="transparent" ');
  }
  
  document.write('type="application/x-shockwave-flash" ');
  document.write('pluginspage="http://www.macromedia.com/go/getflashplayer">');
  document.write('</embed>');
  document.write('</object>');
  
  return false;
}

