var fDesc=new Array();
fDesc[0] = "MYWAY FUNCTIONS AND FEATURES
How long is the distance of my route ?
A questtion for a lot of sportsmen during planing their trainings task: There are a lot of difficult and complicated ways to find out the distance - MyWay provides an easy and comfortable solution to investigate the distance:
scan the map of your training area and measure the route by clicking on your screen.
You only need a JPG file with a map of your trainingsarea. You can scan a map with scanner or you will find a map in the internet. You can also copy and paste a map from the windows clipboard into MyWay.";
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 = '';
}
}