var fDesc=new Array();
fDesc[0] = "UltraCoach® Athletic Training Software is the world’s #1 logging and tracking software for fitness performance, but with a big difference-- with NetAthlon® integration.
This is athletic training software that logs and tracks up to 100 aspects of fitness performance data per user per day. It is multi-user and multi-sport. It comes in two versions: Lite and Full version.
Main Features:
- This is the limited version of UltraCoach and is feature limited for the following: single-user, no heart rate monitor downloads, single sport, and no Workout Generator™
- Accepts NetAthlon files for viewing and analysis
- Reads Graber PowerTap files
- This is the software program available with NetAthlon software
- Setup wizardpolar1-- makes configuring your UltraCoach a snap
- Training notes with up to 4000 characters, plenty of room for a diary
- Equipment log-- keep track of equipment usage, needed repairs and maintenance, custom alarms";
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 = '';
}
}