var fDesc=new Array(); fDesc[0] = "GlassWorks is a powerful install builder tool that provides a user friendly system for deploying applications on multiple platforms. GlassWorks can :
- Create links to quickly launch your application.
- Associate your application with files by extension or mimetype.
- Run your application on startup (Windows and Linux only).
- Install files to user selected or predefined locations.
- Produce compact pack200 compressed installers.
- Display software licenses in either plain text or html format.
- Customise messages and logos displayed to users.
- Customise the look and feel of the installer.
- Restrict actions to specific operating systems.
- Installer and uninstaller/setup applications can be run using a command line interface.
- Delete application created data files on uninstall."; 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 = ''; } }