var fDesc=new Array();
fDesc[0] = "ibright Enterprise is the interface and visualization application of the ibright Solution - a comprehensive fleet management program. It provides features such as:
- Automated RUC rebate generation.
- Comprehensive sensor and diagnostic information via CANBUS and OBD, including engine management.
- Refrigeration unit (reefer) and compactor monitoring.
- Real-time alerts warn you of danger on the road or of scheduled maintenance.";
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 = '';
}
}