
    function fncMenu(myLink, idMenu) {
    	if (myLink=='false') {
    		return false;
    	}
		document.location = myLink+'?idMenu='+idMenu;
    }
    function showColorBar(currObj, aName, objName, sColor) {
		currObj.style.cursor = "pointer";
		if (sColor==null) {
			document.getElementById(objName).style.backgroundColor = "#000000";
			document.getElementById(aName).style.color = "#ff9409";
		} else {
			document.getElementById(objName).style.backgroundColor = "";
			document.getElementById(aName).style.color = sColor;
		}
    }
    function hideColorBar(aName, objName) {
		document.getElementById(objName).style.backgroundColor = "";
		document.getElementById(aName).style.color = "#ffffff";
    }

