var fDesc=new Array(); fDesc[0] = "You make an installer to simplify life for your user, but what about for you?

First and foremost, ease of use is what we are trying to achieve. Excelsior Installer provides a wizard-style interface that guides you through setup making process. The wizard assigns reasonable defaults for most of the project settings and requires only a few items to be filled in manually. In the best case scenario, you will need just two mouse clicks to create an installation package without running packaging wizard at all."; 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 = ''; } }