var fDesc=new Array();
fDesc[0] = "ForCoach Tactics, a practical application for designing and improving soccer drills visually, trends to be a mainstream tool helping coaches around world to make their prefect works on training and playing game.
- Animation diagram and non-animation diagrams of drills
- Display control of the game field, to rotate, pan, zoom and fit view
- Options for customizing, includes field pattern in yards or meters, Futsal supported
- Definition of formation, from 11v11 to 2v2, goalkeepers and trainers optionally
- Eight-orientation, four-shape and three-color player icons
- Player name, number and text comments
- Movable balls and players with trace lines, and possessing ball
- Marking up by sketching straight line, arc, rectangle, oval, curve and freeform
- Multicolor and four-orientation symbols, cone, ring, flag, hurdle, freeman, pole base and etc
- Background picture as a reference
- Explanations and table of players
- Tactics Gallery for storing typical and classic drills
- File facilities, properties, user-defined template, navigation and finding
- Exporting animation to video and diagrams to presentation slides
- Printing with preview
- Live Guide to demonstrate step by step for learning";
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 = '';
}
}