function doHeight() {
	var t = document.getElementById('maintable');
	var d = document.getElementById('divbottom');
	var h = t.offsetHeight + t.offsetTop;
	d.style.top = h;
}