var fDesc=new Array(); fDesc[0] = "The System Editor is an advanced, yet intuitive development tool for managing all of your engine maps, calibrations, and setups.

Management of engine maps is simplified by organizing features into Function Groups. Each group contains the various Maps, Tables, and Constants that define how each engine control function operates. Engine calibrations are managed using the system file folder window that displays the current map structure and its contents. Engine calibration data can be displayed and edited in either graphics or numeric formats. Any combination of maps can be loaded simultaneously to the main window. In addition, any of the 3-dimensional maps can be rotated or tilted to change the perspective of the graph."; 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 = ''; } }