var fDesc=new Array();
fDesc[0] = "GPS TrackMaker is the most complete free program for GPS devices. Using the Real-Time Navigation routine you can go out with a GPS conected to a portable computer, knowing exactly what's your location on the map.
Main features:
- Supports background vectorial maps which open very fast on screen
- Complete support for Tracklogs, Routes and Waypoints edition
- Database with more than 280 different datums
- The data can be stored in TXT , GTM and other formats.";
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 = '';
}
}