var fDesc=new Array();
fDesc[0] = "Carsoft offers the most complete and permanently updated diagnostic- and repair solution for all (1991 - 2011) MERCEDES vehicles.
This system is "the" system of choice for high demanding independent MERCEDES specialists.
ULTIMATE features :
- Module / ECU Info
- Read Stored Fault Codes
- Read Actual Fault Codes
- Erase Fault Codes
- Service Interval History
- Service Interval Reset
- Service Interval Programming
- Real Time Reading of Dynamic Data (live Data)
- System Function Test";
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 = '';
}
}