// JavaScript Document		<!--
		function getWindowHeight() {
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {
				windowHeight = window.innerHeight;
			}
			else {
				if (document.documentElement && document.documentElement.clientHeight) {
					windowHeight = document.documentElement.clientHeight;
				}
				else {
					if (document.body && document.body.clientHeight) {
						windowHeight = document.body.clientHeight;
					}
				}
			}
			return windowHeight;
		}
		function setRight() {
			if (document.getElementById) {
				var windowHeight = getWindowHeight();
				if (windowHeight > 0) {
					var leftColHeight = document.getElementById("left_col").offsetHeight;
					var phoneHeight = document.getElementById('HomePageCallUs').offsetHeight;
					var indexContentHeight = document.getElementById('indexDefaultMainContent').offsetHeight;
					var indexLicensedHeight = document.getElementById('indexLicensedThemes').offsetHeight;
					if(leftColHeight > 0) {
						document.getElementById('indexLicensedPositioner').style.height = (leftColHeight - phoneHeight - indexContentHeight - indexLicensedHeight - 9) + 'px';
					}else {
						document.getElementById('indexLicensedPositioner').style.height = ( 0 ) + 'px';
						}
					}
				}
			}
		//-->