function toggleScores() {
// this is only used in the MyShow pages, but I'm lazy so I'm going to add it to this.
	changedoc=document.getElementById('triumph');
	togglelink=document.getElementById('triumphlink');
	if (changedoc.style.display=="block") {
		changedoc.style.display="none";
		togglelink.innerHTML="Show Scores";
	} else {
		changedoc.style.display="block";
		togglelink.innerHTML="Hide Scores";
	}
}

// should maybe create the innerHTML with JS too, but what to give non-JS users?


