function insert_flash(swf, width, height, version, bgcolor) {
	document.write('<object 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 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://get.adobe.com/flashplayer/"')
	document.write(' type="application/x-shockwave-flash"')
	document.write('</embed></object>')
}