var menu = {
	shownav:function(strid){
		if (tmpobj=document.getElementById("menu_"+strid)){
			if (tmpobj) tmpobj.style.display="block";
		}
	},
	hidenav:function(strid){
		if (tmpobj=document.getElementById("menu_"+strid)){
			if (tmpobj) tmpobj.style.display="none";
		}
	}
};
