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