var fDesc=new Array();
fDesc[0] = "Provides a very intuitive visualisation of your ride or run by coloring the track on the map according to speed/pace, heart rate and lots of other parameters.
Track Coloring plugin is a port of parts of our ST2 "Map Overlay plugin" to ST3. It took a while, but now this outstanding work has been done.
The plugin has two major features: track coloring and map info popups for selected ranges.";
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 = '';
}
}