var fDesc=new Array();
fDesc[0] = "MPRouteWriter is designed to export a route's waypoints to a Microsoft Excel workbook or a text file. Typically, a route is created from pushpins.
After an optimum route has been found, it is often necessary to have a list of the waypoints with their estimated times and associated pushpin data. MPRouteWriter solves this problem by exporting the waypoints and any associated pushpins. The route order is maintained, and associated information (eg. distances and estimated travel times) can also be written.";
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 = '';
}
}