var fDesc=new Array();
fDesc[0] = "CentreDesk Repair is a multi-user workshop repairs application, designed for a Repairs enterprise.
Main features:
- Fast, easy call logging, and tracking, with the full history of all actions taken.
- Easily assign issues to technicians
- Logs include 'Time-tracking which is automated according to the type of issue, (calculates holidays and working days) and flagged to indicate the current status and duration
- Issues that are awaiting a reply for quotations, or are in the workshop, or awaiting parts are automatically set to "On Hold"";
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 = '';
}
}