<!--

function show(tbodyid,dis) {
	document.getElementById(tbodyid).style.display = dis;
}


function page_height(tbodyid2) {
	docheight = '100%';
	if (typeof document.height!= 'undefined') {
		docheight = document.height;
	} else if (document.compatMode && document.compatMode!= 'BackCompat' && document.documentElement.scrollheight!= undefined) {
		docheight = document.documentElement.scrollheight;
	} else if (document.body && typeof document.body.scrollheight!= 'undefined') {
		docheight = document.body.scrollheight;
	} else {
		docheight = document.body.scrollHeight;
	}
	document.getElementById(tbodyid2).style.height = docheight + 'px';
}


//-->
