var fDesc=new Array(); fDesc[0] = "If you need to install a program or package on a client's computer, but don't want anyone to tamper with the installation, you must run the MSI in silent mode. Silent installations don't use a graphical user interface, so you can also use them to deploy packages on computers in your business too without bothering your employees. You can run a silent installation in Windows 7 by invoking Windows Installer with a command line option."; 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 = ''; } }