var fDesc=new Array(); fDesc[0] = "The easy and powerful way to create Windows(r) Installer Packages (*.MSI files). Simple installer wizard interface allows creation of full-blown Windows(r) installations.
PopulateMSI places the power of the following Windows installer features at your fingertips: The Windows(r) Installer organizes an installation around the concepts of components and features. A feature is a part of the application's total functionality that a user may decide to install independently. A component is a piece of the application or product to be installed. The installer always installs or removes a component from a user's computer as a coherent piece. Components are usually hidden from the user. When a user selects a feature for installation, the installer determines which components must be installed to provide that feature. PopulateMSI creates a component for each directory in the application or products directory tree."; 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 = ''; } }