dsRightBG = function() {
	var obj = document.getElementById('ds_td_right');
	obj.style.width = '';
	
	var objSWF = document.getElementById('ds_right_bg_swf');
	objSWF.style.display = 'none';
	
	var x = obj.offsetWidth;
	objSWF.style.width = x + "px";
	objSWF.style.display = 'block';
	obj.style.width = x + "px";
	
	if (!document.body.onresize)
		document.body.onresize = dsRightBG;
}

