var fDesc=new Array();
fDesc[0] = "DashDAQ Update Tool allows you to update your product firmware version.
DashDAQ supports all of the following 1996 and newer OBD2 compliant vehicles.
This new software will allow technicians using a J2534 tool for reprogramming at the repair shop to perform enhanced, manufacturer-specific diagnostics. It also gives hobbyists and CarPC owners the functionality in the original DashDAQ with the freedom to pick your own PC and form factor.";
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 = '';
}
}