var fDesc=new Array();
fDesc[0] = "If you want to know the horsepower and torque of your engine, or the 0 to 60 time of your car, or even the 1/8 mile or 1/4 mile time and speed, just use the Nology LaptopDyno™.
Use it to check and clear the Diagnostic Trouble Codes (DTC), or to turn off the "Check Engine" light. -- Yes, the one that came on right after you did all those cool engine mod's. Perfect for when you have to get the car smogged.";
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 = '';
}
}