var fDesc=new Array();
fDesc[0] = "VCDS is a full-function diagnostic system for VW/Audi. Constantly updated software has ensured compatibility with all VW, Audi, Seat and Skoda passenger cars through the current model year ever since. Allows users to view and log of 3 groups of Measuring Blocks (live data) simultaneously.
Supports 7-Digit SKC codes and is able to access modules requiring proprietary VAG modes on the KWP-2000 protocol (2001+ Teves Mk.60 ABS, numerous 2002+ modules).";
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 = '';
}
}