// JavaScript Document
// Main for reset the first <table> under <body>
// Need MM_findObj()
// set in <body> tag onLoad & onReset

function ATDC_resetTableHeight(n,h){
	obj = MM_findObj(n);
	if(navigator.appName == "Netscape") {
		if(h) obj.style.height = h + "px";
		else obj.style.height = innerHeight + "px";
	}else if(navigator.appName == "Microsoft Internet Explorer") {
		if(h) obj.style.height = h + "px";
		else obj.style.height = document.body.clientHeight + "px";
 	}
}

