var fDesc=new Array();
fDesc[0] = "The GPSResults program can be used to calculate and evaluate the track-velocities from measured GPS-data. First of all the data (trackpoints) have to be read from your GPS, transferred to your computer, and saved as gpx-file.
The trackpoints can be downloaded from the GPS directly using GPSResults (only for Garmin Geko 201, Foretrex 101 oder Foretrex 201: File - Download Trackpoints from GPS: select COM-Port, press Read Trackpoints and finally save as gpx-file).
For the Garmin eTrex Legend C with USB interface there is also the option USB for a much faster download od the trackpoints directly via the USB-port. Don´t use this option if you use an USB-serial-adaptor!
After starting GPSResults you can open and read one or several gpx-files that have been transferred from your GPS and saved using g7towin. In the File-menu click Open and select the data files to be loaded.
If several files shall be loaded select them sequentailly with the Ctrl-Button pressed or select a whole range with the Shift-button pressed (select last file first and then the first file of the range with the Shift-button pressed). Press the Open button after selection of the filenames.
All selected files (four in this example) are loaded into the programm, the Trackpoints are displayed in the right panel and the evaluation is performed for all selected Tracks that are contained in the data files. Tracks can be selected/deselected in the uppermost section.
The Tracks consist of Tracksegments which can be selected/deselected in the second section of the left panel.
Finally the Tracksegments contain Trackpoints which are displayed in the third section of the left panel.";
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 = '';
}
}