
		<!-- Hide script from older browsers

		function toggleObj(currObj) {
			if (document.getElementById) {
				thisObj = document.getElementById(currObj).style
				if (thisObj.display == "block") {
					thisObj.display = "none"
				}
				else {
					thisObj.display = "block"
				}
				return false
			}
			else {
				return true
			}
		}
		function toggleOpen(currObj) {
			if (document.getElementById) {
				thisObj = document.getElementById(currObj).style
					thisObj.display = "block"
				return false
			}
			else {
				return true
			}
		}

