
function WriteObject(swfPath, width, height) {
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' width="' + width + '" height="' + height + '"');
	document.write(' codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">');
	document.write('<param name="movie" value="' + swfPath + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<embed src="' + swfPath + '" quality="high" bgcolor="#ffffff"');
	document.write(' width="' + width + '" height="' + height + '" align="middle"');
	document.write(' play="true"');
	document.write(' loop="false"');
	document.write(' quality="high"');
	document.write(' allowScriptAccess="sameDomain"');
	document.write(' type="application/x-shockwave-flash"');
	document.write(' pluginspage="http://www.adobe.com/go/getflashplayer">');
	document.write('</embed>');
	document.write('</object>');
}
