/* cosnolidate NN/IE element identification */
if(document.all && !document.getElementById)
	{	
		document.getElementById = function(id) {
			return document.all[id];
			}
	}
function mouseOver(nav,navImage)
{
	var el = document.getElementById(nav);
	var newImage = navImage + "_SEL.gif";
	el.src = newImage;
}
function mouseOut(nav,navImage)
{
	var el = document.getElementById(nav);
	var newImage = navImage + ".gif";
	el.src = newImage;
}

function showLargePhoto(fullURL, fullWidth ,fullHeight, printURL, isAdmin)
{
	var popURL;
	if(isAdmin == "true")
	{
		popURL = "../eventphotos/photo.aspx?fullURL=" + fullURL + "&fullWidth=" + fullWidth + "&fullHeight=" + fullHeight + "&printURL=" + printURL;
	} 
	else 
	{
		popURL = "photo.aspx?fullURL=" + fullURL + "&fullWidth=" + fullWidth + "&fullHeight=" + fullHeight + "&printURL=" + printURL;
	}
	var args = "toolbar=0,width=" + fullWidth + ",height=" + (fullHeight + 52) + ",statusbar=no,scrollbars=0";
    window.open(popURL, null, args);
}
