var fDesc=new Array();
fDesc[0] = "Soccer Playbook is a tool to help coaches define, draw and share soccer plays and drills.
Main features:
- An easy to use design tool to sketch soccer plays and drills.
- An animation screen to help you follow the flow of plays.
- Storing of plays in a database ordered in categories you define.
- A text editor to describe your plays and drills.
- Export and import functions to exchange plays with other users of this program.
- Printing of graphics in high quality.
- Creation of play lists to prepare your practice.";
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 = '';
}
}