var fDesc=new Array();
fDesc[0] = "InnoTools Downloader is an Inno Setup script and DLL which allows you to download files as part of your installation.
Main features:
- Downloads from HTTP or FTP
- Download with a progress screen, or without any UI
- Send data to your webserver with easy POST requests, and read the responses
- An example shows how your installer can check for updates before installation begins, and download an updated installer
- Includes Brazilian Portuguese, Dutch, English and French translations.";
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 = '';
}
}