var fDesc=new Array();
fDesc[0] = "An Inexpensive Easy to Use Fuel Tax Program for owner/operators, fleet owners, and third party tax preparers
Main Features:
- automates the entry of the first three digits of the odometer.
- allows you to store trips across up to 25 state borders for an easy two click re-use.
- minimizes the amount of typing.
- free Quarterly rate updates.
- creates your miles in state for you utilizing Microsoft® Mappoint.
- imports "miles in state" reports from PC*MILER.";
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 = '';
}
}