var fDesc=new Array();
fDesc[0] = "The main aim of OPTAC3 Tachograph Analysis is to keep your drivers legal and compliant with the Drivers’ Hours Legislation and the Working Time Directive. It automatically checks the tachograph data against legislation and displays summaries and infringements in a clear, easy to understand format.
With 40+ different Driver & Vehicle Reports in 19 languages, Tachograph Analysis has never been so easy.";
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 = '';
}
}