function matchToClientSize(center) {
	if(document.body.clientHeight < 565) {
		document.getElementById("pageFooterBg-2").style.display = "none";
		if(center) {
			document.getElementById("centerBox").style.marginTop = "5px";
		}
	}
	else {
		document.getElementById("pageFooterBg-2").style.display = "block";
		if(center) {
			var mainHeight = (document.getElementById("nonFooter").clientHeight - 270 - 110 - 140) / 2;
			document.getElementById("centerBox").style.marginTop = mainHeight+"px";
		}
		
	}
}

function matchToClientSize2() {
	var bodyHeight = document.body.clientHeight;
	var trcenterHeight = bodyHeight - 381;
	document.getElementById('trcenter').style.height = trcenterHeight+'px';
	/* document.getElementById('centerMoreMore').style.height = trcenterHeight+'px'; */
}
