var fDesc=new Array();
fDesc[0] = "TripLogik Manager is a PC application designed to make the translation of trips into a filtered report as painless and as automated as possible.
Developed with real users in mind and subjected to a series of lengthy practical evaluations by a diverse range of users, TripLogik Manager has been optimised for Trip Reporting and ease of use.
Main features:
- 3 clicks is all it takes to produce a basic report
- Simple uploading of records from the logger via USB
- Automatically identifies the location of the start and end of each journey
- Displays the route of each trip using Google Maps™ or Google Earth™
- Automatically assigns trip type from your button press at drive time
- Additional category and qualifier information can be added to each trip
- A mileage rate can be assigned to each trip category
- Regularly visited places will be automatically recognised using TripLogik’s Cluster technology
- Free text notes can be added to each trip
- Reports and invoices can be generated, printed or exported to other applications
- Comprehensive on-line help provided
- Individual trips can be exported to Google Earth™";
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 = '';
}
}