var fDesc=new Array();
fDesc[0] = "Car Logbook Professional(Pro) tracks the use and cost of vehicles.
The shareware version is fully functional and free with one exception - cost tracking is not available. It is compatible with freeware version of Car Logbook and will produce the required taxation report.
Main features:
- It is data and function compatible with the freeware version of Car Logbook
- Printing or reports
- Records are identified by icons and color
- Records in error are display in red
- Note legend is displayed
- Odometer value is supported to 2 decimal places
- Function - Add from XML is no longer supported.
- Exporting data to CSV file or Excel
- Purchases can now be stored and tracked
Car Logbook Pro is a smart, reliable and small tool that helps you easily manage your vehicles and their costs.";
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 = '';
}
}