function d(id){return document.getElementById(id);}
	function resize(){
		var bundHeight = 262;
		var topBgHeight = 105;
		var contentHeight = d("hu_right").scrollHeight - topBgHeight;
		d("hu_middel").style.height = (contentHeight+5) + "px";
		d("phpbb").style.height = contentHeight + 750 + "px";
	}
	resize();
	var rt = setInterval("resize()", 1000);
	//setTimeout("clearTimeout(rt)", 10000);
