var fDesc=new Array();
fDesc[0] = "Firstbeat Sports Individual is designed for seriously trained athletes and coaches. The solution provides tools for optimizing training load and recovery. In addition to unique training load assessment (EPOC & Training Effect) the system provides a novel heart rate variability based stress and recovery analysis tool helping the athlete in optimizing the training periodization.
Main features:
- Real-time monitoring.
- Recovery test.
- Quick recovery test.
- Daily stress assessment.
- Data export.
- Movescount sync.
- Firstbeat cloud sync.";
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 = '';
}
}