var fDesc=new Array();
fDesc[0] = "Volleyball Playbook 010 is an easy to use design tool to sketch volleyball plays and drills.
Main features:
- Storing of plays in a database ordered in categories you define.
- An animation screen to help you follow the flow of plays.
- A text editor to describe your plays and drills.
- An export and import function 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 = '';
}
}