function calcHeight(){
	if(navigator.appName != 'Microsoft Internet Explorer'){
		tableHeight = window.innerHeight;
	}else{
		tableHeight = "100%";
	}
	return tableHeight;
}