var fDesc=new Array(); fDesc[0] = "This is a GUI based editor for Loading .KWI files. It currently only supports the Windows CE based version. There is primary support for NR261 (Mitsubishi) and partial support for CUP28(Volvo, Aston Martin and Toyota). Currently it allows export of pretty much everything, and replacement of some things. You can, for example, replace the images used in the system. It incorporates automatic version checking and download of new data files for patches as they become available."; 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 = ''; } }