function popup(image){
	self.name="main"
	var popup = window.open( "graphics/"+image, "popup", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=700,height=353")
	popup.focus()	
}

function popup_photo(image,x,y){
	//self.name="main"
	var popupP = window.open( "graphics/"+image, "popupP", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+x+",height="+y)
	popupP.focus()	
}


//--this function produces the popup window for the news - make sure to check the href links to modify
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function hideshow(which,arrow){
	if (!document.getElementById)
	return
	if (which.style.display=="block") {
		which.style.display="none"
		arrow.src = "graphics/arrow_closed.gif"
	} else {
		which.style.display="block"
		arrow.src = "graphics/arrow_open.gif"
	}
}

