function insert_flash(swf, width, height, version, bgcolor,fid) {
	document.write('<object ')
	if (fid != "") {
	  document.write('id="' + fid + '" ')
	}
	document.write('classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + version + ',0,0,0" width="' + width + '" height="' + height + '">')
	document.write('<param name="movie" value="' + swf + '">')
	document.write('<param name="WMode" value="Transparent">')
	document.write('<param name="quality" value="high">')
	document.write('<param name="scale" value="exactfit">')
	document.write('<param name="bgcolor" value="' + bgcolor + '">')
	document.write('<param name="menu" value="false">');
	document.write('<embed ')
	if (fid != "") {
	  document.write('swliveconnect="true" name="' + fid + '" ')
	}
	document.write('src="' + swf + '"')
	document.write(' WMode="Transparent"')
	document.write(' width="' + width + '" height="' + height + '"')
	document.write(' quality="high"')
	document.write(' scale="exactfit"')
	document.write(' bgcolor="' + bgcolor + '"')
	document.write(' menu="false"');
	document.write(' pluginspage="http://www.macromedia.com/go/getflashplayer"')
	document.write(' type="application/x-shockwave-flash"')
	document.write('</embed></object>')
}