function showAvatar(showId)
{
	document.getElementById("avatarPic").style.display = "block"; 
	document.imgAvatar.src="RosterAvatars/"+showId+".jpg";
}
function hideAvatar(hideId)
{
	document.getElementById("avatarPic").selected = "none";
	document.imgAvatar.src="";
}
function showPano()
{
	var i = document.getElementById("selPano").selectedIndex;
	var txt = document.getElementById("selPano").options[i].text;
	txt = "Themes/blackrain203/Panographics/Pano_" + txt + ".JPG";
	document.getElementById("imgSmallPano").src = txt;
	//document.imgAvatar.src="RosterAvatars/"+showId+".jpg";
}

