// JavaScript Document

<!-- Hide script from older browsers
		
		stdBrowser = (document.getElementById) ? true : false

		function popUp(evt,currElem,top) {
			popUpWin = (stdBrowser) ? document.getElementById(currElem).style : eval("document." + currElem)
			if (document.all) {
				popUpWin.pixelTop = (top)
				popUpWin.pixelLeft = 169
			}
			else {
				if (stdBrowser) {
					popUpWin.top = (top) + "px"
					popUpWin.left = 169 + "px"
				}
				else {
					popUpWin.top = parseInt(evt.pageY)-10
					popUpWin.left = Math.max(2,parseInt(evt.pageX)+10)
				}
			}
			popUpWin.visibility = "visible"
		}

		function popDown(currElem) {
			popUpWin = (stdBrowser) ? document.getElementById(currElem).style : eval("document." + currElem)
			popUpWin.visibility = "hidden"
		}

// End hiding script -->