var fDesc=new Array();
fDesc[0] = "Take control of any major league team and guide them through season after season to the world series. It's your chance to turn your team into a modern dynasty.
Features include:
-6000 players
-1000 non-players
-200 teams
-Pitch by pitch commentry on game day
-Fast game simulation
-Media engine summarizing events of other games
-Many, many, stats for hitting, pitching and fielding categories for all players and teams.
-Send your scouts to look at prospects in the upcoming draft.";
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 = '';
}
}