		<!-- 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)+300				popUpWin.pixelLeft = Math.max(2,parseInt(evt.x)-1)			}			else {				if (stdBrowser) {					popUpWin.top = parseInt(evt.pageY)+300 + "px"					popUpWin.left = Math.max(2,parseInt(evt.pageX)-1) + "px"				}				else {					popUpWin.top = parseInt(evt.pageY)+300					popUpWin.left = Math.max(2,parseInt(evt.pageX)-1)				}			}			popUpWin.visibility = "visible"		}		function popDown(currElem) {			if (stdBrowser) {				popUpWin = document.getElementById(currElem).style			}			else {				popUpWin = eval("document." + currElem)			}			popUpWin.visibility = "hidden"		}		// End hiding script -->
