var fDesc=new Array();
fDesc[0] = "Let RepairSolutions provide you with complete vehicle diagnostics – from code to solution. Understanding why your Check Engine light is on is one thing. Fixing it is another. RepairSolutions uses an extensive knowledge database that, until now, only a professional technician would have access to.
With RepairSolutions you will be able to:
-Pinpoint why your Check Engine light is on
-Get a better understanding of why the failure occurred
-Make sense of those difficult to understand trouble code definitions
-Learn what parts and tools are required to make the correct repair – it even includes labor times!
-Determine if you want to make the repair or have someone else do it
-Purchase and print step-by-step factory service instructions on how to make the repair
-Keep a history of your vehicle’s repair information
-Get ready for a State vehicle emissions (smog) 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 = '';
}
}