function TDM_fixHeight(){
	try{
		var con = document.getElementById('TDM_left_column');
		var tbls = con.getElementsByTagName('table');
		var el = tbls[0];
		var minus = 0;
		
		if(navigator.appName.indexOf('Microsoft') > -1){
			if(navigator.appVersion.indexOf('MSIE 5.5') == -1){
				minus = 20;
			}
		}
		
		el.style.height = (con.offsetHeight - minus) + 'px';
	}catch(e){ ; }
}

window.onload = TDM_fixHeight;