var fDesc=new Array();
fDesc[0] = "BOX SCORE™ brings fun and excitement to the challenge of sports trivia in a unique game that plays like a sport. Going well beyond conventional quiz formats, BOX SCORE™ tests sports knowledge in a game that makes decision-making, strategy, and luck part of the outcome.
Whether playing for bragging rights in a head-to-head match-up with a friend or trying for a top ten score in a single-player game, fans will encounter situations guaranteed to make each and every game of BOX SCORE™ unpredictable and entertaining.";
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 = '';
}
}