<!--
// JavaScript Document

customHeight2 = function () {
	var res = screen.availHeight;
	if (res > 780) {
		res = res -430;
		var resstring = ""+ res;
		if (document.getElementById('content') != null){
			document.getElementById('content').style.height = resstring +"px";
		}
			
		if (document.getElementById('searchPara') != null){
			document.getElementById('searchPara').style.height= resstring +"px";
		}
		
		res = res - 4;
		resstring = ""+ res;
		if (document.getElementById('contentLeft') != null){
			
			document.getElementById('contentLeft').style.height = resstring +"px";
		}
		if (document.getElementById('contentRight') != null){
			document.getElementById('contentRight').style.height = resstring +"px";
		}
		res = res - 16;
		resstring = ""+ res;		if (document.getElementById('default') != null){
			document.getElementById('default').style.height = resstring +"px";
		}	
		
		if (document.getElementById('txtMenu') != null){
			res = res - 19;
			resstring = ""+ res;
			document.getElementById('txtMenu').style.maxHeight = resstring +"px";
		}

	}
	
	
	
	



}

function customHeight(){}
customHeight();

-->