var fDesc=new Array();
fDesc[0] = "The Yellow Activity Monitoring System is a low-cost, low-maintenance system that aids with the management of plant and heavy-vehicle activity. This rugged, fully electronic system provides a means of easily and accurately monitoring the working patterns of a vehicle fleet.
Activity and engine data are recorded, stored, transferred and processed with little or no human intervention. This means that there is very little chance of data loss, corruption or tampering. Accurate reports of fleet or individual vehicle activity may be easily produced using the PC-based software.";
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 = '';
}
}