function populateTeam( theTeam, theMenu ){
    list = theMenu.options[theMenu.selectedIndex].text;
    teamBox = eval('document.forms[0].'+theTeam);
    teamBox.value = list;
}

function boxScoreWindow(gameId){
	var href = "boxScore.php?gameId="+gameId;
	var prefs ="toolbar=no,status=no,menubar=no,scrollbars,resizeable,location=no,width=430,height=470"
	window.open(href,"boxScore",prefs);
	}