function showAvatar(showId)
{
	document.getElementById("avatarPic").style.display = "block"; 
	document.imgAvatar.src="RosterAvatars/"+showId+".jpg";
}
function hideAvatar(hideId)
{
	document.getElementById("avatarPic").style.display = "none"; 
	document.imgAvatar.src="";
}