function makeBBSwf(ObjectID, bWidth, bHeight, bURL, bwMode, bName, bText)
{
//	DivID
//	var bBanner = returnObjById(DivID);
//	bBanner.outerHTML =

	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="' + bWidth + '" height="' + bHeight + '"	name="flash_' + ObjectID + '" id="flash_' + ObjectID + '" type="application/x-shockwave-flash">');
	document.write('<param name="movie" value="' + bURL + '" /> ');
	document.write('<param name="quality" value="high" /> ');
	document.write('<param name="menu" value="0" /> ');
	if (bwMode)
	{
		document.write('<param name="wmode" value="' + bwMode + '" /> ');
	}
	document.write('<!--[if !IE]> <--> ');
	document.write(	'<object type="application/x-shockwave-flash" data="' + bURL + '" width="' + bWidth + '" height="' + bHeight + '" name="flashi_' + ObjectID + '" id="flashi_' + ObjectID + '"> ');
		document.write('<param name="menu" value="0" /> ');
		document.write('<param name="quality" value="high" /> ');
		if (bwMode)
		{
			document.write('<param name="wmode" value="' + bwMode + '" /> ');
		}
			document.write('' + bName + ' ');
	document.write('</object> ');
	document.write('<!--> <![endif]--> ');
	document.write('<!--[if IE]> ');
	document.write('' + bText + ' ');
	document.write('<![endif]--> ');
	document.write('</object>');
}
