var fDesc=new Array(); fDesc[0] = "The Vehicle Diagnostic Scan-Tool Software (VDSTS) is a user-friendly sofware tool able to diagnose engine and system problems.
This Windows-based program was designed to communicate with a wide variety of Engine Control Units (ECUs). The interface between the ECU and the PC is via an RS232 interface box. The graphic user interface (GUI), along with the help screens, hotkeys, and mouse support combine to provide a user friendly system. The main graphic user interface (GUI) consists of a pulldown menu and a tool bar. The execution of the menu items is accomplished through numeric controls, command button controls, pop-up panels and others."; 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 = ''; } }