function jsresize(){

	if (document.body.clientHeight){
	x = document.body.clientHeight;
	}

	if (window.scrollHeight){
	x = window.scrollHeight;
	}

	y = document.getElementById("right_column");
	y.style.height = x+"px";

}