var fDesc=new Array();
fDesc[0] = "An interesting application for training coaches about various strategies about their sport.
Features:
- Supports more than one sport (currently Soccer/Football, Hockey, Volleyball, Floorball, Futsal and American Football).
- Records and plays back sequences of positions for documenting tactical strategies or plays.
- Save and loads tactical sequences from files - allows building a library of plays or drills.
- Supports pre-defined layouts that position players, ball/puck, cones (for some sports) and officials.
- Supports exporting images and image sequences to files or clipboard.
- English and German translations of the UI.";
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 = '';
}
}