	<!--
	var currCell;
	var currMenu;
	var tmrID;
	var bMenuAlive=false;
	var tmrMenuAlive;
	var bTopMenuAlive=false;
	
	function isMenuAlive() {
		if(bMenuAlive== false) {
			UndoClick(currCell,currMenu);
			return false;
		} else {return true;}
	}

	function goTo(sURL) {
		window.location.href = sURL;
	}
	
	function subOver() {
		currCell.className = "menuClicked";
	}

	function keepMenuAlive() {
		bMenuAlive = true;
	}

	function notInContactOfMenu() {
		bMenuAlive = false;
	}

	function timerdoClick(cell,menu)
	{
		if (bMenuAlive || bTopMenuAlive) {
			var cell = eval(cell.id);
			var menu = eval(menu.id);

			keepMenuAlive();
			cell.className = "menuHigh";
			
			menu.style.posLeft = cell.offsetLeft; 
			menu.style.posTop = cell.offsetParent.offsetTop + cell.offsetParent.offsetHeight; 
			menu.style.display = "";
			currCell = cell;
			currMenu = menu;
			clearTimeout(tmrID);
			tmrMenuAlive = window.setInterval("isMenuAlive()",100);
		} else {
			UndoClick(cell,menu)
		}
	}
	function doClick(cell,menu) {
		if (isMenuAlive()==true) {
			UndoClick(currCell,currMenu);
		}

		cell.className='menuHigh';
		
		if (menu!=null) {
			tmrID = window.setTimeout("timerdoClick(" + cell.id +"," + menu.id + ")",200); 
		}
	}
	
	function UndoClick(cell,menu) {
		try {
			if(cell!=null) {
				currCell.className = "menuStd";
				cell.className = "menuStd";
				currMenu.style.display = "none";
				menu.style.display = "none";
				window.clearTimeout(tmrID);
				window.clearInterval(tmrMenuAlive);
			}
		} 
		catch (e) {
		}
	}
	//-->