function echo_swf(sSWF, sName, nWidth, nHeight, sBGColor){
	document.write('<!-- START: SWF ------------------------------------------------------->');
	document.write('<object ');
	document.write('	classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('	codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"');
	document.write('	width="'+nWidth+'"');
	document.write('	height="'+nHeight+'"');
	document.write('	id="'+sName+'"');
	document.write('>');
	document.write('	<param name="allowScriptAccess" value="sameDomain">');
	document.write('	<param name="movie" value="'+sSWF+'">');
	document.write('	<param name="quality" value="high">');
	document.write('	<param name="bgcolor" value="'+sBGColor+'">');
	document.write('	<embed ');
	document.write('		src="'+sSWF+'"');
	document.write('		swliveconnect="true"');
	document.write('		quality="high"');
	document.write('		bgcolor="'+sBGColor+'"');
	document.write('		width="'+nWidth+'"');
	document.write('		height="'+nHeight+'"');
	document.write('		name="'+sName+'"');
	document.write('		allowscriptaccess="sameDomain"');
	document.write('		type="application/x-shockwave-flash"');
	document.write('		pluginspage="http://www.macromedia.com/go/getflashplayer"');
	document.write('	></embed>');
	document.write('</object>');
	document.write('<!-- END: SWF ---------------------------------------------------------->');
}