function setSize(){
	if(window.innerHeight){	// NS
		//alert(window.innerHeight)
		document.getElementById("middle").style.height = window.innerHeight-195;
	}else{	// IE
		//alert(document.body.clientHeight);
		document.all.middle.style.height = document.body.clientHeight-170;
	}
}


function getHeight() {
	if (window.innerHeight) { // NS
		return window.innerHeight;
	} else { // IE
		return document.body.clientHeight;
	}
}

function getWidth() {
	if (window.innerWidth) { // NS
		return window.innerWidth;
	} else { // IE
		return document.body.clientWidth;
	}
}

function onResize() {
    new ScrollableTable(document.getElementById('scrollTable'), getHeight() - 195, getWidth()- 400);
}
