var fDesc=new Array(); fDesc[0] = "Kirin is an application to create MSI based Windows Installers. It is designed to be as simple and flexible as possible and is therefore very suitable to handle install requirements for most software.
Features :
- Package icon and version can be associated with your application main executable so you don't have to manually specify the product version on each update.
- No need to learn specific scripting languages just to create an installation package."; 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 = ''; } }