var fDesc=new Array();
fDesc[0] = "It enables you to manage and organize your athletes and fitness teams.
Main features:
- easy registration for the athletes in sport aerobic and fitness teams.
- comfortable processing of data (names of athletes, teams, compositions, and movements) for the organisers (with a component of FRF software, the FRF Studio, that provides export of the data to Excel file or to Tabulation Program).
- sending of FRF file by e-mail.
- possibility of creation or correction of the file at the site of registration.";
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 = '';
}
}