 	function zoomin(newimage) {
		newWin = window.open
		(newimage, "BigImage", "width=300 height=400,scrollbars=yes")
		
		newWin.focus()
		
	}
	function zoomscroll(newimage){
		newWin = window.open(newimage,"BigImage","width=800 height=600,scrollbars=yes")
		newWin.focus()

	}
			function positionElem(evt,elem)
			{
				/* Positions the passed in element slightly below where you click */
		
				offsetX = window.event.clientX - 80;
				offsetY = window.event.clientY + 5;
				myObj = document.getElementById(elem);
				myObj.style.top = offsetY + "px"; 
				myObj.style.left = offsetX + "px";
				
			}

			function showactions(event,elem)
			{
				var tempobj = document.getElementById(elem);
				tempobj.style.display = "inline";
				/*  positionElem(event,elem); */
				
			}

			function makeblack(div){
				var tempDiv = eval("document.all."+div);
				tempDiv.style.color = "gold";
			}
			function makewhite(div){
				var tempDiv = eval("document.all."+div);
				tempDiv.style.color = "white";
			}

			function hidediv(div)
			{
				var tempdiv = eval("document.all."+ div);
				tempdiv.style.display = "none";
				tempdiv.style.visibility = "hidden"
			}
			function showdiv(div)
			{
				var tempdiv = eval("document.all."+ div);
				tempdiv.style.display = "inline";
				tempdiv.style.visibility = "visible"
			}
			function toggleMenu(currElem,nextPos) {
					
				menuObj = (stdBrowser) ? document.getElementById(currElem).style : eval("document."+currElem)
				
				if (toggleMenu.arguments.length == 1) {
					
					nextPos = nextPos = (parseInt(menuObj.top) == 60) ? -90 : 60
				}
				menuObj.top = (stdBrowser) ? nextPos + "px" : nextPos
				
			}
