var fDesc=new Array(); fDesc[0] = "- In the Game Viewer, the totals for All Players is now in the same panel as the totals for the teams of the game. This frees up window space so that the player's stats panel has more space.
- Added 2 new "Special Searches." The first one is titled "51 Slayer Wins", and basically finds any games you won with more points than you should have (ie in a game to 50, your total in the end was 51.)

The other is "Nailbiting Wins", and will find all games (of Slayer, Oddball, or Kings gametypes) in which you won by only one point (for example, you win 50-49.)"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }