var fDesc=new Array();
fDesc[0] = "Stand-alone installers with the widest platform support for professional developers.
Create stand-alone installers for any Windows 32-bit or 64-bit desktop or server platform, with complete customization of all installer actions and dialogs.
Features:
- Install on Windows 95, 98, Me, NT4, 2000, XP, Vista, 7, and all Servers
- Run with full user interface on Windows Server 2008 Core and Windows Preinstallation Environment (WinPE)
- Full .Net assemblies and prerequisites support
- Full Windows side-by-side assemblies support
- Native 32-bit and native x64 installers
- Unicode through-and-through";
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 = '';
}
}