var fDesc=new Array();
fDesc[0] = "The Xtreme Route library is a software library that contains functionality for advanced route calculations including fleet routing. All calculations supports parallel execution, up to the limit set by the license.
The library is developed in C# and targets .NET developers in need of powerful routing functionality. It's a high-level object oriented library, very easy to use and understand, yet powerful enough to solve very advanced routing problems.
The demo application that can be downloaded here works as a typical desktop routing application, and uses the Xtreme Route library to show some of the functionality the library has to offer.";
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 = '';
}
}