	<!--

	//--------------------------------------------------------------------------
	// 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() - 237;
	}
	function pageLoad() {
		pageResize();
	}

 //-->
