var fDesc=new Array(); fDesc[0] = "TrackProfiler is a small free utility for exporting GPS track profiles into PNG images. It works with java (version 1.3, 1.4 or 1.5)

Main Features:

- Load a track (OziExplorer file type: .PLT) and view its profile
- The track profile can be smoothed
- You can view track extremes
- You can load track waypoints (in .WPT file format)
- You can add/remove waypoints
- Calculate average ascent/descent on some point of the track
- Export it as a PNG image for your web page"; 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 = ''; } }