function flyoutMenu(evt, obj, show) {
	elm1=document.getElementById('fohide1');
	elm2=document.getElementById('fohide2');
	for (var x=0;x<obj.childNodes.length;x++) {
		 var child = obj.childNodes[x]
		 if (child.nodeType == 1) {
				if (child.className == "flyoutMenu") {
					 child.style.visibility = (show)? "visible" : "hidden";
						if (elm1 != null) {
							 elm1.style.display = (show)? "none" : "block";
						}
						if (elm2 != null) {
							 elm2.style.display = (show)? "none" : "block";
						}
				}
				if (child.className == "flyoutLink") { // added by e-works, 20060525
					 child.style.textDecoration = (show)? "underline" : "none";
				}
	   }
	}
}

function flyoutUnderline(id, show) {
	elm=document.getElementById(id);
	if (elm != null) {
		 elm.style.textDecoration = (show)? "underline" : "none";
	}
}

