// Functions to help with contest-related code

///////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Shows or hides the breakup of the team members' contribution to the team's points in a contest
function ToggleTeamBreakupDisplay(divName, imgName, teamId, contestId)
{
	// toggle the image
	var imgElt = document.getElementById(imgName);
	var divElt = document.getElementById(divName);
	if (!divElt.style || !divElt.style.display || divElt.style.display == "none")  // the text is not being shown
	{
		// show the text
		divElt.style.display = "block";
		MakeAjaxRequest("dbConn.php?action=showContestTeamBreakup&contest="+contestId+"&team="+teamId, divName);
		divElt.innerHTML = "&nbsp;&nbsp;&nbsp;<span class='tahoma11gry2_light'>Retrieving...</span>";
		
		// change the icon appropriately
		imgElt.src = "images/icon_minus.png";
	}
	else
	{
		// the text was being shown, so hide it
		imgElt.src = "images/icon_plus.png";
		divElt.style.display = "none";
	}
}
