var fDesc=new Array();
fDesc[0] = "InstallShield Premier Edition gives you all the capabilities of our Professional Edition, plus tons of exclusive functionality.
Features:
- Avoid common installation issues—Validators in the InstallShield Best Practices Validation Suite alert you if your installation violates any best practices guidelines.
- Improve your end user's experience—With refreshed end-user dialog designs.
- Easily convert legacy installations into MSI packages—With InstallShield Repackager, you can easily create MSI packages.
- Localize your installation—InstallShield's multilingual support lets you create installations for 35 runtime languages from one installation project.";
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 = '';
}
}