var fDesc=new Array();
fDesc[0] = "The routing, mileage and mapping software that today's transportation industry depends on.
Main features:
-Easily integrate with leading fuel optimization, routing & scheduling, transportation and supply chain management systems for complete customization and standardization across your entire business
-Reduce out-of-route mileage saving money, time, toll and fuel cost
-Maximize overall drive time with a built in HOS Manager to easily factor breaks and stops into your route plan
-Support both a global and intermodal business with Worldwide and Rail map data
-Establishing a PC*MILER true cost rating builds better relationships and results in more successful negotiations while providing operational consistency";
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 = '';
}
}