function gebi(name){
	try{
		var obj = document.getElementById(name);
		if(obj) return obj;
	}
	catch(e){}
	return null;
}

function on_Load(){
	var hor_offset = IS_IE?610:600;
	var ver_offset = IS_IE?265:276;
	var obj = gebi('cont_width');
	if(obj) {
		obj.style.width = new String(gebi('bbdy').getBoundingClientRect().right - hor_offset);
		var rect = obj.getBoundingClientRect();
		var obj = gebi('right_news');
		if(obj) obj.style.top = -86 - (rect.bottom - rect.top - 52);
	}
}

