var fDesc=new Array();
fDesc[0] = "DotRacing is a plugin for SportTracks.
DotRacing plugin allows you to replay your workouts on the SportTracks map with a cursor (vulgo "dot") racing along the track and compare multiple activities and see one racer per activity racing against each other.
Watch and compare real-time parameters of these activities like speed, heart rate, power on a dashboard.
Display and compare these parameters on line charts.";
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 = '';
}
}