var currentZoom;

function newPhoto(newPhoto, i)
{
    if (currentZoom != null)
        currentZoom.style.display = "none";
        
    var imgZoom = document.getElementById("imgZoom" + i);
    imgZoom.style.display = "inline";
    currentZoom = imgZoom;
    
//	imgThumbnail.style.visibility = "hidden";
//	imgThumbnail.src = "/thumb.aspx?file=/content/venue_pics/" + newPhoto + "&size=180";
//	imgThumbnail.style.visibility = "visible";
	//document.getElementById(zoomLink).href = "/content/venue_pics/" + newPhoto;
}