var fDesc=new Array();
fDesc[0] = "AutoWinWin is designed for managing all technical and administrative aspects of your fleet in a simple way.
It provides:
- Preventive and Corrective Work Management, with alerts
- Custom-made analysis and indicators.
Features:
- Detailed record of your fleet: Detailed datasheet of vehicles. Manage your equipments or your clients.
Use a structured code, plate number or use your own code.
- Cost Management: Powerful tool to manage fleet maintenance costs. You will be able to cross-analyze costs between vehicle types, accounts, locations and much more.
- Work Management: Personalize your work types; easy to manage day-to-day activity (schedule, issue and close/report).
- Modern interface: AutoWinWin was developed from scratch with .NET resources. It is user-friendly.";
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 = '';
}
}