var fDesc=new Array();
fDesc[0] = "PlayMaker Football is a footbal software wich includes a collection of tools that lets you diagram and print your playbook, test your plays through simulation, and manage your roster and player abilities.
It offers entertaining: ncludes a game mode for you to match your team against the competition. It allows you to specify your coaching strategy and run a game automatically, or get involved calling the plays and controlling the ball.
It gives you a way to collaborate, share your ideas with others and engage in friendly competition.
Main features:
- Chalkboard Play Design
- Practice Field
- Build Custom Teams
- Print Plays and Roster
- User-Defineable Coaching Intelligence
- Game Statistic and Transcript
PlayMaker Football for Windows requires Windows XP or later.";
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 = '';
}
}