function setHeight(){
var frame = document.getElementById("tableCom");
var windowheight = window.innerHeight-50;
if(this.lastWindowHeight != windowheight)
frame.style.height = windowheight + "px";
this.lastWindowHeight = windowheight;
}