<!--
function RemaxHeight(){
for(i = 0; i < 3; i++){
  var intHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    intHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    intHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    intHeight = document.body.clientHeight;
  }

TableHeight = document.getElementById("tblHeight").offsetHeight;
scroller = document.getElementById("divscroller");
scrollerframe = document.getElementById("datamain");

	if( TableHeight >= intHeight - 260 ) {
		scroller.style.height = TableHeight - 262 + "px";
		scrollerframe.style.height = TableHeight - 262 + "px";
	} else if( TableHeight <= intHeight - 259 ) {
		scroller.style.height = intHeight - 492 + "px";
		scrollerframe.style.height = intHeight - 492 + "px";
	}
}
}
//window.onresize= RemaxHeight;
-->