var fDesc=new Array();
fDesc[0] = "Wishing you could distribute your web applications in a professional installer that does everything and will deploy your software anywhere, and not as a ZIP file that does nothing?
-Easy install of PHP and ASP based applications to local or remote servers.
-Create installers for Windows from Linux or Windows.
-Automatic installation of ionCube Loaders for PHP if required.
-Support for multi-language installer messages and support files.
-Assign custom permissions to files or folders.
-Heuristics to optimise installation performance and assist user input.";
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 = '';
}
}