<!-- Hide script from older browsers

		if (document.all) {
			docObj = "document.all."
			styleObj = ".style"
		}
		else {
			docObj = "document."
			styleObj = ""
		}

		function popUp(evt,currElem) {
			popUpWin = eval(docObj + currElem + styleObj)
			if (document.all) {
				popUpWin.top = parseInt(evt.y)+10
				popUpWin.left = Math.max(20,parseInt(evt.x)+10)
			}
			else {
				popUpWin.top = parseInt(evt.pageY)+5
				popUpWin.left = Math.max(20,parseInt(evt.pageX)+5)
			}
			popUpWin.visibility = "visible"
			window.status = ""
		}

		function popDown(currElem) {
			popUpWin = eval(docObj + currElem + styleObj)
			popUpWin.visibility = "hidden"
		}

		// End hiding script -->

