// JavaScript Document

function dispSWF( _SWF, _W, _H, _ID, _BGCOLOR )
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write('	codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab#version=9,0,0,0" ');
	document.write('	width="' + _W + '" ');
	document.write('		height="' + _H + '" ');
	document.write('		id="' + _ID + '" ');
	document.write('		align="middle"> ');
	document.write('	<param name="allowScriptAccess" value="sameDomain" /> ');
	document.write('	<param name="movie" value="' + _SWF + '" /> ');
	document.write('	<param name="quality" value="high" /> ');
	document.write('	<param name="bgcolor" value="' + _BGCOLOR + '" /> ');
	document.write('	<embed src="' + _SWF + '"  ');
	document.write('		quality="high" ');
	document.write('		bgcolor="' + _BGCOLOR + '"  ');
	document.write('		width="' + _W + '" ');
	document.write('		height="' + _H + '" ');
	document.write('		name="' + _ID + '"  ');
	document.write('		align="middle" '); 
	document.write('		allowScriptAccess="sameDomain"  ');
	document.write('		type="application/x-shockwave-flash" '); 
	document.write('		pluginspage="http://www.macromedia.com/go/getflashplayer" /> ');
	document.write('	</object> ');
}
