function embedFlash(fileName, movieWidth, movieHeight, backColor)
	{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" \n');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" \n');
	document.write('WIDTH  = "'+movieWidth +'"  \n');
	document.write('HEIGHT = "'+movieHeight+'"  \n');
	document.write('id     = "MOVIE" \n'); 
	document.write('ALIGN  = "CENTER"    > \n');
	document.write('<PARAM NAME = "MOVIE"   VALUE = "'+fileName+'"> \n');
	document.write('<PARAM NAME = "menu"    VALUE = "false"    > \n');
	document.write('<PARAM NAME = "quality" VALUE = "best"     > \n');
	document.write('<PARAM NAME = "scale"   VALUE = "" > \n');
	document.write('<PARAM NAME = "bgcolor" VALUE = ""  > \n');
	document.write('<EMBED src="'+fileName+'" \n');
	document.write('menu    = false \n');
	document.write('quality = best \n');
	document.write('swLiveConnect=true \n');
	document.write('bgcolor = #000000 \n');
	document.write('WIDTH   = "'+movieWidth +'" \n');
	document.write('HEIGHT  = "'+movieHeight+'" \n');
	document.write('NAME    = "MOVIE" \n');
	document.write('TYPE    = "application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"> \n');
	document.write('</EMBED> \n');
	document.write('</OBJECT>');
	}
	