function statsTabs(stat, gameId) {
  var tabBody = "sbScoreboxStats" + stat + "-" + gameId;
  document.getElementById("sbScoreboxStatsGame-" + gameId).style.display = "none";
  document.getElementById("sbScoreboxStatsPitch-" + gameId).style.display = "none";
  document.getElementById("sbScoreboxStatsBat-" + gameId).style.display = "none";
  document.getElementById(tabBody).style.display = "block";
  document.getElementById("sbScoreboxStatsTabsGame-" + gameId).src = "/fe/img/MLB/Scoreboard/tab_game_off.gif";
  document.getElementById("sbScoreboxStatsTabsPitch-" + gameId).src = "/fe/img/MLB/Scoreboard/tab_pitch_off.gif";
  document.getElementById("sbScoreboxStatsTabsBat-" + gameId).src = "/fe/img/MLB/Scoreboard/tab_bat_off.gif";
  document.getElementById("sbScoreboxStatsTabs" + stat + "-" + gameId).src = "/fe/img/MLB/Scoreboard/tab_" + stat.toLowerCase() + "_on.gif";
}

function openRadioWindow() {
  var radioWindow = window.open("/radio", "subwindow", "height=100,width=299");
}