function leaders(stat, gameId) {
  var tabBody = "sbScoreboxLeaders" + stat + "-" + gameId;
  document.getElementById("sbScoreboxLeadersPass-" + gameId).style.display = "none";
  document.getElementById("sbScoreboxLeadersRush-" + gameId).style.display = "none";
  document.getElementById("sbScoreboxLeadersRec-" + gameId).style.display = "none";
  document.getElementById(tabBody).style.display = "block";
  document.getElementById("sbScoreboxLeadersTabsPass-" + gameId).src = "/fe/img/NFL/Scoreboard/leaders_tab_pass_off.gif";
  document.getElementById("sbScoreboxLeadersTabsRush-" + gameId).src = "/fe/img/NFL/Scoreboard/leaders_tab_rush_off.gif";
  document.getElementById("sbScoreboxLeadersTabsRec-" + gameId).src = "/fe/img/NFL/Scoreboard/leaders_tab_rec_off.gif";
  document.getElementById("sbScoreboxLeadersTabs" + stat + "-" + gameId).src = "/fe/img/NFL/Scoreboard/leaders_tab_" + stat.toLowerCase() + "_on.gif";
}

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