
			function GotoLeague(caller) {
				Selected_League = caller.options[caller.selectedIndex].value;
				if (Selected_League == 0) {
					window.location = "index.php";
				} else {
					window.location = "index.php?function=showteam&league=" + Selected_League;
				}
			}
			function GotoTeamInfo(caller) {
				Selected_Team = caller.options[caller.selectedIndex].value;
				Selected_League = document.HOLDER.LEAGUEVAL.value;
				if (Selected_Team == 0) {
					return;
				} else {
					window.location = "teaminfo.php?function=showteaminfo&team=" + Selected_Team + "&league=" + Selected_League;
				}
			}
			function ShowLeague(caller) {
				Selected_League = caller.options[caller.selectedIndex].value;
				window.location = "leagueinfo.php?league=" + Selected_League;
			}
			
			
			function GotopastLeague(caller) {
				Selected_League = caller.options[caller.selectedIndex].value;
				if (Selected_League == 0) {
					window.location = "pastscores.php";
				} else {
					window.location = "pastscores.php?function=showteam&league=" + Selected_League;
				}
			}
			function GotopastTeamInfo(caller) {
				Selected_Team = caller.options[caller.selectedIndex].value;
				Selected_League = document.HOLDER.LEAGUEVAL.value;
				if (Selected_Team == 0) {
					return;
				} else {
					window.location = "pastscores.php?function=showteaminfo&z=t&team=" + Selected_Team + "&league=" + Selected_League;
				}
			}
			function ShowpastLeague(caller) {
				Selected_League = caller.options[caller.selectedIndex].value;
				window.location = "pastscores.php?z=l&league=" + Selected_League;
			}

