function get_height() {
	div = document.getElementById ? document.getElementById('content_td') : document.all.content_td;
	div_height = div.offsetHeight;
	divide = div_height / 50;
	height = (Math.ceil(divide) * 50) + 25;
	
	div.style.height = height + 'px';
//	alert(height);

}
