var fDesc=new Array();
fDesc[0] = "Water polo Playbook is an application that lets you direct a water polo game.
The features include:
- Saving the plays in a database
- An easy to use tool that helps you design the arrangement of the players, their movements, game schemes etc.
- An animation screen to help you better understand the game choices you make
- A text editor to describe the game sequences you create
- An export and import function to share plays with other users
- High-quality printing of graphics
- Creation of play lists";
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 = '';
}
}