var fDesc=new Array();
fDesc[0] = "QC5100 handheld computer runs Windows® CE operating system
QC5100 handheld computer has an integrated INLINE 4 adapter and supports SAE J1939 and J1708/J1587 data links
QC5100 handheld computer contains a 3.8" monochrome QVGA touch-sensitive LCD, 20-key keypad, and a rechargeable lithium ion battery
PowerSpec CE reads Cummins engine configuration settings
PowerSpec CE transfers a HotSpec created by the PowerSpec PC application to your Cummins engine";
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 = '';
}
}