var fDesc=new Array(); fDesc[0] = "InnoTools Tray is an Inno Setup script and DLL which allows your installer to minimize itself to the tray at any point during installation. You can pop up an information balloon on the tray icon to tell users about installation progress.
Features
* Allows setup to be minimized to the tray
* Can be minimized from code or by the user minimizing the window
* Pop up a balloon from the tray to tell the user about events"; 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 = ''; } }