// ------- ActiveX
/*function objectSwf(swf,width,height) {
	document.write('<object type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" data="' + swf + '">');
	document.write('<param name="movie" value="' + swf + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<embed src="' + swf + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '" wmode="transparent"></embed>');
	document.write('</object>');
}
*/
function objectSwf(swf,width,height) {
	document.write('<object codeBase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' +width+ '" height="' +height+ '" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000">');
	document.write('<param name="_cx" value="20585" />');
	document.write('<param name="_cy" value="6720" />');
	document.write('<param name="flashvars" value="" />');
	document.write('<param name="movie" value="'+ swf +'" />');
	document.write('<param name="src" value="'+ swf +'" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<param name="play" value="-1" />');
	document.write('<param name="loop" value="-1" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="salign" value="" />');
	document.write('<param name="menu" value="false" />');
	document.write('<param name="base" value="" />');
	document.write('<param name="AllowScriptAccess" value="sameDomain" />');
	document.write('<param name="scale" value="ShowAll" />');
	document.write('<param name="DeviceFont" value="0" />');
	document.write('<param name="EmbedMovie" value="0" />');
	document.write('<param name="BGColor" value="" />');
	document.write('<param name="SWRemote" value="" />');
	document.write('<param name="MovieData" value="" />');
	document.write('<param name="SeamlessTabbing" value="1" />');
	document.write('<param name="Profile" value="0" />');
	document.write('<param name="ProfileAddress" value="" />');
	document.write('<param name="ProfilePort" value="0" />');
	document.write('<embed src="'+ swf +'" quality="high" wmode="transparent" width="'+ width +'" height="'+ height +'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}