<!--
	var strOnDisplay = -1;
	var objCurrentSpan;
	var objCurrentTeaseSpan;
	var objCurrentAnchor;
	var objPhoto;
	var objPhotoAnchor;
	
	function showDetails(strID)
	{
		if(strID != strOnDisplay)
		{
			if(strOnDisplay != -1)
			{
				objCurrentSpan = eval("spnDetails" + strOnDisplay);
				objCurrentTeaseSpan = eval("spnTeaser" + strOnDisplay);
				panelHide();
			}
			objCurrentSpan = eval("spnDetails" + strID);
			objCurrentTeaseSpan = eval("spnTeaser" + strID);
			objCurrentAnchor = eval("anchor" + strID);
			panelShow();
			//window.navigate("#anchorDetails" + strID)
			strOnDisplay = strID;
		}
		else
		{
			objCurrentSpan = eval("spnDetails" + strOnDisplay);
			objCurrentTeaseSpan = eval("spnTeaser" + strOnDisplay);
			panelHide();
			strOnDisplay = -1;
		}
	}
	
	function panelHide()
	{
		objCurrentSpan.style.display = "none";
		objCurrentTeaseSpan.style.display = "inline";
		if(objCurrentAnchor.innerText == "hide overview")
		{
			objCurrentAnchor.innerText = "overview";
		}
		else
		{
			objCurrentAnchor.innerText = "show details";
		}
	}
	
	function panelShow()
	{
		objCurrentSpan.style.display = "inline";
		objCurrentTeaseSpan.style.display = "none";
		if(objCurrentAnchor.innerText == "overview")
		{
			objCurrentAnchor.innerText = "hide overview";
		}
		else
		{
			objCurrentAnchor.innerText = "hide details";
		}
	}

	function showHidePhoto(strID)
	{
		objPhoto = eval("spnPhoto" + strID);
		objPhotoAnchor = eval("photoAnchor" + strID);
		if(objPhoto.style.display == "inline")
		{
			objPhoto.style.display = "none";
			objPhoto.style.visibility = "hidden";
			objPhotoAnchor.innerText = "View";
		}
		else
		{
			objPhoto.style.display = "inline";
			objPhoto.style.visibility = "visible";
			objPhotoAnchor.innerText = "Hide";
		}
	}
//-->