var fDesc=new Array();
fDesc[0] = "Cab Assistant is an accounting software for windows.
Features:
-simple, faultless handling
-safe data transmission
-acoustic warning in case of interruptions
-trips in mode 'signed off' are recorded without shift sign-on
-redundant data - no shifts get lost
-if a driver-Cey got lost, data read out with the owner-Cey possible
-detailed trip and accumulated shift data can be deleted separately
-limited shift sign-ons per driver-Cey (1-15 shifts)";
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 = '';
}
}