
// flickr style popup using an image map Jory

		if (document.getElementById) {
			stdBrowser = true
			//alert('stdBrowser');
		}
		else {
			stdBrowser = false
			//alert('not stdBrowser');
		}

		function popUp(evt,currElem) {
			if (stdBrowser) {
				popUpWin = document.getElementById(currElem).style
			}
			else {
				popUpWin = eval("document." + currElem)
			}
			
			if (document.all) {
				//popUpWin.pixelTop = parseInt(evt.y)+5 
				//popUpWin.pixelLeft = Math.max(2,parseInt(evt.x)+5) 
				popUpWin.top = parseInt(evt.y)+5 + "px"
				popUpWin.left = Math.max(2,parseInt(evt.x)+5) + "px"
				//alert('doc all 1');
			}
		else {
				if (stdBrowser) {
				popUpWin.top = parseInt(evt.pageY)+5 + "px"
					popUpWin.left = Math.max(2,parseInt(evt.pageX)+5) + "px"
			
			var pie = document.getElementById("flickrBox");
			pie.className = "flickrPie";
					//alert('standard bro 2');
				}
				else {
					popUpWin.top = parseInt(evt.pageY)+5
					popUpWin.left = Math.max(2,parseInt(evt.pageX)+5)
					//alert('else 3');
				}
			}
			popUpWin.visibility = "visible"
		}

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

		// End hiding script -->
	