var fDesc=new Array();
fDesc[0] = "TIS-Compact III is an all-in-one downloading and archiving solution. TIS-Compact III provides a basic means of visualising, downloading, archiving and printing out vehicle and driver data.
Using a special Downloadkey which has the TIS-Compact III software pre-installed, you can quickly and securely download data from digital tachographs and inserted driver cards – then transfer the data to a computer as if you were using a USB stick, for example. TIS-Compact III also lets you visualise and archive the data on your computer and make print-outs.";
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 = '';
}
}