function fnGetWindowWidth() {
		if (window.innerWidth) {
			return window.innerWidth;
		} else if (document.documentElement && document.documentElement.clientWidth) {
			return document.documentElement.clientWidth;
		} else if (document.body) {
			return document.body.clientWidth
		}
	}

	function fnGetWindowHeight() {
		if (window.innerHeight) {
			return window.innerHeight;
		} else if (document.documentElement && document.documentElement.clientHeight) {
			return document.documentElement.clientHeight;
		} else if (document.body) {
			return document.body.clientHeight;
		}
		return;
	}

	function fnResizeMainTable() {
		if (document.maintable) {
			document.maintable.style.height = fnGetWindowHeight()+'px';
		} else {
			document.getElementById("maintable").style.height = fnGetWindowHeight()+'px';
		}
	}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}