var fDesc=new Array(); fDesc[0] = "My Fleet Manager can function as both a database and as a report generator. As a database you can use it to store records about your equipment, customers, vendors, trips, revenue, expenses, etc (Screen Shots). Once your data is entered you can then run reports within the program using any combination of your data. You can run reports for a stated period of time that calculate Total Revenue, Fuel Purchases, Miles Traveled, MPG, Cost per Mile, Profit/Loss, and a lot of other reports you may want or need and, once you create a report you like, you can save it for later use to run it on new data. If the existing reports aren't enough, there is also the capability to export all your data to Excel for further manipulation and processing."; 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 = ''; } }