

// Flash Object write
function swfprint(id,title,src,bgcolor,width,height)
{
	document.write('	<object	id="'+id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'" align="middle" title="'+title+'">');
	document.write('		<param name="allowScriptAccess" value="sameDomain" />');
	document.write('		<param name="movie" value="'+src+'" />');
	document.write('		<param name="quality" value="high" />');
	document.write('		<param name="bgcolor" value="'+bgcolor+'" />');
	//document.write('		<param name="wmode" value="transparent"/>');
	document.write('		<embed name="'+id+'"	type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="sameDomain" src="'+src+'" quality="high" width="'+width+'" height="'+height+'" bgcolor="'+bgcolor+'" align="middle" />');
	document.write('	</object>');
}

// Flash Object write
function tswfprint(id,title,src,bgcolor,width,height)
{
	document.write('	<object	id="'+id+'" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'" align="middle" title="'+title+'">');
	document.write('		<param name="allowScriptAccess" value="sameDomain" />');
	document.write('		<param name="movie" value="'+src+'" />');
	document.write('		<param name="quality" value="high" />');
	document.write('		<param name="wmode" value="transparent"/>');
	document.write('		<embed name="'+id+'"	type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" allowScriptAccess="sameDomain" src="'+src+'" quality="high" width="'+width+'" height="'+height+'" wmode="transparent" align="middle" />');
	document.write('	</object>');
}