	<!--

	//--------------------------------------------------------------------------
	// NAVIGATION FUNCTIONS: 
	
	// open dialog window with Width & Height parameters:
	function openWnd(url, w, h) {
		var width = w;
		var height = h;
		var left = parseInt((screen.availWidth/2) - (width/2));
		var top = parseInt((screen.availHeight/2) - (height/2));
		var windowFeatures = "width=" + width + ",height=" + height + 
			",left=" + left + ",top=" + top + 
			",screenX=" + left + ",screenY=" + top +
			",status=0,resizable=1,menubar=0,scrollbars=0";
		var myWindow = window.open(url, "", windowFeatures);
	}

	// open url:
	function openURL(url) {
		document.location.href = url;
	}

	//--------------------------------------------------------------------------
	// OTHER FUNCTIONS: 

	function getInsideWindowHeight() {
		var isIE6CSS = (document.compatMode && document.compatMode.indexOf("CSS1") >= 0) ?
        true : false;

	    if (window.innerHeight) {
	        return window.innerHeight;
	    } else if (isIE6CSS) {
	        // measure the html element's clientHeight
	        return document.body.parentElement.clientHeight;
	    } else if (document.body && document.body.clientHeight) {
	        return document.body.clientHeight;
	    }
	    return 0;
	}

	function pageResize() {
//		document.getElementById("imgH").height = getInsideWindowHeight() - 100;
	}
	function pageLoad() {
		pageResize();
		pageLoad2();
	}

    function getObjectHeight(elem) {
		var result = 0;
		if (elem.offsetHeight) {
			result = elem.offsetHeight;
		} else if (elem.clip && elem.clip.height) {
			result = elem.clip.height;
		} else if (elem.style && elem.style.pixelHeight) {
			result = elem.style.pixelHeight;
		}
		return parseInt(result);
	}

	function pageLoad2() {
		var el = document.getElementById("data");
		var h = getObjectHeight(el);
		var el = document.getElementById("newsTable");
		var h = h - getObjectHeight(el);
		var el = document.getElementById("imgL");
        el.height = h - 300;
	}
	//-->

