<!--// Resize to full unless taller
function maxHeight(){
  var Int_height = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    Int_height = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    Int_height = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    Int_height = document.body.clientHeight;
  }

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

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