function FlashObject(Path,Width,Height,BgColor) {
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="'+ Width +'" height="'+ Height +'">'); 
	document.write('<param name="movie" value="'+ Path +'" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="play" value="true">');
	if (BgColor=='transparent') document.write('<param name="wmode" value="transparent">'); 
	else document.write('<param name="bgcolor" value="'+ BgColor +'" />');
	document.write('<embed src="'+ Path +'" quality="high"  width="'+ Width +'" height="'+ Height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"');
	if (BgColor=='transparent')	document.write('wmode="transparent"');
	else document.write('bgcolor="'+ BgColor +'"');
	document.write('/>');
	document.write('</object>');
}
