<!--
function getClientAreaHeight() {
	var iClientAreaHeight;

	if (typeof window.innerWidth!='undefined') {
		iClientAreaHeight = window.innerHeight;
	} else {
		if (document.documentElement && typeof document.documentElement.clientHeight!='undefined' && document.documentElement.clientHeight!=0) {
			iClientAreaHeight = document.documentElement.clientHeight
		} else {
			if (document.body && typeof document.body.clientHeight!='undefined') {
				iClientAreaHeight = document.body.clientHeight
			}
		}
	}

	return iClientAreaHeight;
}

function getClientAreaWidth() {
	var iClientAreaWidth;

	if (typeof window.innerWidth!='undefined') {
		iClientAreaWidth = window.innerWidth;
	} else {
		if (document.documentElement && typeof document.documentElement.clientWidth!='undefined' && document.documentElement.clientWidth!=0) {
			iClientAreaWidth = document.documentElement.clientWidth
		} else {
			if (document.body && typeof document.body.clientWidth!='undefined') {
				iClientAreaWidth = document.body.clientWidth
			}
		}
	}

	return iClientAreaWidth;
}
//-->