function embedFlash(target, width, height, bgcolor) {
	document.write('<!--[if IE]>\n');
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" width="'+width+'" height="'+height+'">\n');
	document.write('<![endif]-->\n');
	document.write('<!--[if !IE]> <-->\n');
	document.write('<object width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" data="'+target+'" />\n');
	document.write('<!--> <![endif]-->\n');
	document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
	document.write('<param name="movie" value="'+target+'" />\n');
	document.write('<param name="loop" value="false" />\n');
	document.write('<param name="menu" value="false" />\n');
	document.write('<param name="quality" value="best" />\n');
	document.write('<param name="bgcolor" value="'+bgcolor+'" />\n');
	document.write('</object>\n');
}