var fDesc=new Array();
fDesc[0] = "Enhance your coaching effectiveness by integrating our powerful performance analysis software into your coaching program. This dynamic tool provides you with invaluable, real-time and post-game analysis capabilities. Focus X2 lets you identify problems, instantly view aspects of performance and measure improvement. You will be able to assess performance in a more effective and efficient way than ever before.
Main Features:
- Provides fast, accurate, visual feedback to your players to maximize coaching input and opportunity.
- Improves your ability to develop individual player performance and consequently overall team effectiveness.
- Optimizes your coaching time and effectiveness in crucial post game analysis.
- Allows in-depth 'scouting' of opposition in an effective and time-efficient manner.
- Gives you the ability to quickly generate game or season highlight tapes.";
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 = '';
}
}