
    function MM_jumpMenu(targ,selObj,restore){ //v3.0
        eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
        if (restore) selObj.selectedIndex=0;
    }

	function MM_openBrWindow(theURL,winName,features) { //v2.0
		window.open(theURL,winName,features);
	}
	
	function glossary(TheURL,JAwide,JAtall,JAstatus) {
			var option="resizable=yes,toolbar=0,location=0,url=0,directories=0,status=" + JAstatus + ",menubar=0,scrollbars=1,copyhistory=0,width=" + JAwide + ",height=" + JAtall;
			myWindow = window.open(TheURL,"GlossaryInfo","resizable=yes,toolbar=0,location=0,url=0,directories=0,status=" + JAstatus + ",menubar=0,scrollbars=1,copyhistory=0,width=" + JAwide + ",height=" + JAtall);
			myWindow.location = TheURL 
	}

	function fetch(url) {
		rootWin.location = url;
	}		
	
	var win = null;
	function newWindow(mypage,myname,w,h,features) 
	{
		var winl = (screen.width-w)/2;
		var wint = (screen.height-h)/2;
		if (winl < 0) winl = 0;
		if (wint < 0) wint = 0;
		var settings = 'height=' + h + ',';
		settings += 'width=' + w + ',';
		settings += 'top=' + wint + ',';
		settings += 'left=' + winl + ',';
		settings += features;
		win = window.open(mypage,myname,settings);
		win.window.focus();
	}

