var fDesc=new Array();
fDesc[0] = "This software is designed specifically to make the whole process of downloading data from a group of GPS devices, formatting the data into a race replay and then watching the replay as fast and pain free as possible.
Main Features:
- One-click GPS data downloading from up to 21 Velocitek devices in one batch ( USB hub required)
- Automatic Microsoft Virtual Earth map overlay
- Simple drag and drop mark addition
- Compatible with all Velocitek GPS devices
- Intuitive visual interface for setting race start and end times, course angle, panning and zooming
- Export to GPX and KML file formats
System Requirements:
- Windows XP, Vista or 7 operating system.";
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 = '';
}
}