// JavaScript Document
var u_height = 500;
function retHeight(id)
{
	HVal=(document.compatMode=="CSS1Compat")?document.documentElement.clientHeight :document.body.clientHeight;
	u_height = HVal-401;
	document.getElementById(id).style.height=u_height+"px";	
}	
	
retHeight('tb');
