		<!-- Hide script from older browsers				if (document.getElementById) {			stdBrowser = true		}		else {			stdBrowser = false		}		function popUp(evt,currElem) {			if (stdBrowser) {				popUpWin = document.getElementById(currElem).style			}			else {				popUpWin = eval("document." + currElem)			}						if (document.all) {				popUpWin.pixelTop = parseInt(evt.y)-100				popUpWin.pixelLeft = Math.max(2,parseInt(evt.x)-100)			}			else {				if (stdBrowser) {					popUpWin.top = parseInt(evt.pageY)-100 + "px"					popUpWin.left = Math.max(2,parseInt(evt.pageX)-100) + "px"				}				else {					popUpWin.top = parseInt(evt.pageY)-100					popUpWin.left = Math.max(2,parseInt(evt.pageX)-100)				}			}			popUpWin.visibility = "visible"		}		function popDown(currElem) {			if (stdBrowser) {				popUpWin = document.getElementById(currElem).style			}			else {				popUpWin = eval("document." + currElem)			}			popUpWin.visibility = "hidden"		}		// End hiding script -->
