var fDesc=new Array();
fDesc[0] = "Tachyon T1 Toyota is a PC application which will connect to your vehicle using Tachyon T1 USB or T1 BT. This Application is specially designed for Toyota Vehicle users with Advanced Features.
Main Features:
- Dash Board
- Read Sensor Data
- Read DTCs
- Freeze Frame
- Fuel Economy
- Performance Tests
- Horse Power Calculation
- 0-60km/hr Timing
- Gear Shifting Graphs
- Fuel Map";
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 = '';
}
}