
function diplayFlash(_objPath_, _width_, _height_)
{
	var _object_ = "";
	
	_object_= '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,29,0" width="' + _width_ + '" height="' + _height_ + '">';
	_object_ += '<param name="movie" value="'+_objPath_+'">';
	_object_ += '<param name="quality" value="high">';
	_object_ += '<param name="wmode" value="transparent">';
	_object_ += '<embed src="'+_objPath_+'" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + _width_ + '" height="' + _height_ + '"></embed>';
	_object_ += '</object>';
	
	document.write(_object_);	
}

function changebbs2(num)
{
    for (i = 1 ; i < 3 ; i++ )
    {
	    if ( num == i )
		    document.getElementById("theme"+i).style.display = "block";
	    else
		    document.getElementById("theme"+i).style.display = "none";
    }
}