// JScript source code
function setmenutext( targetId, strDesc ){
	if (document.getElementById) {
		target = document.getElementById( targetId );
			target.innerHTML = strDesc;
			if (strDesc == "") { 
				target.style.display = "none"; }
			else {
				target.style.display = "";
			}
		}		
}

function setmenucolor( targetId, colorChg ){
	if (document.getElementById) {
		target = document.getElementById( targetId );
		target.style.backgroundColor = "Red";
		}		
}

