var fDesc=new Array();
fDesc[0] = "Two minutes left and only a touchdown will win it! You call the plays and manage the clock in this thrilling offense-only football arcade game. Buy better players with cash earned for first downs and scores.
Features:
-Build your team from scratch
-Add new players as you improve
-Create your own custom plays
-Three difficulty levels";
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 = '';
}
}