function SwfObject(swfname,bgcol,w,h) {
	if(w == undefined){
		w = 400;
	}
	if(h == undefined){
		h = 290;
	}
	document.write('<div align="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="');
	document.write(w);
	document.write('" height="');
	document.write(h);
	document.write('" id="swfobj" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain">');
	document.write('<param name="movie" value="');
	document.write(swfname);
	document.write('">');
	document.write('<param name="quality" value="high">');
	document.write('<param name="wmode" value="transparent">');
	document.write('<param name="menu" value="false">');
	document.write('<param name="BGCOLOR" value="');
	document.write(bgcol);
	document.write('">');
	document.write('<embed src="');
	document.write(swfname);
	document.write('" quality="high" menu="false" bgcolor="');
	document.write(bgcol);
	document.write('" width="');
	document.write(w);
	document.write('" height="');
	document.write(h);
	document.write('" name="swfobj" wmode="transparent" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>');
	document.write('</object></div>');
}
