		function toggleThing(currThing) {
			if (document.getElementById) {
				thisThing = document.getElementById(currThing).style
				if (thisThing.display == "block") {
					thisThing.display = "none"
				}
				else {
					thisThing.display = "block"
				}
				return false
			}
			else {
				return true
			}
		}
		
		function toggleThingShowAll(currThing) {
		var things=currThing.split("|")
			if (document.getElementById) {
				for (var i=0;i<things.length;i++)	{
					thisThing = document.getElementById(things[i]).style
						thisThing.display = "block"
				}
					return false
			}
			else {
					return true
				}
		}
		
		function toggleThingHideAll(currThing) {
		var things=currThing.split("|")
			if (document.getElementById) {
				for (var i=0;i<things.length;i++)	{
					thisThing = document.getElementById(things[i]).style
						thisThing.display = "none"
				}
					return false
			}
			else {
					return true
				}
		}