var fDesc=new Array();
fDesc[1] = "archives or zip files, what is this? Well, zip files are archives used for storing and distributing files and these can contain 1 or more files. WinZip has a feature called Wizard, which will take you through the entire program, helping you to compress wisely.";
fDesc[2] = "for ZIP/ARJ/LHA/RAR/UC2/TA R/GZ/CAB/ACE. Command line, full text search also in packed files, button bar,FTP client.";
fDesc[3] = "This reliable utility gives the user the capability of updating and maintaining web sites through FTP (File Transfer Protocol). It is possible as well to upload and download files via SSL, TLS and SFTP, to and from FTP servers.";
fDesc[4] = "servers. It can be easily used in a script, a batch file or the Task Scheduler to automate resources uploads.";
fDesc[5] = "program is absolutely free and does not contain any annoying ad banners.";
fDesc[6] = "script, a batch file or the Task Scheduler to automate file downloads.";
fDesc[7] = "allows you to schedule and automate your file transfers. This program can be used to connect to any FTP server and download or upload files. Auto FTP Manager also enables you to synchronize directories.";
fDesc[8] = "background transfers, shows file transfer progress and has a bookmarking feature. It also supports automatic resume of broken downloads/uploads.";
fDesc[9] = "performs multithread transfers and can transfer whole folders. User interface is similar to MS IExplorer for making easy the operations. It also includes a site manager, custom FTP commands for command line operation, and also proxy support.";
fDesc[10] = "facility. The Secure FTP application can be run in FTP mode (plain text data) over SSL or FTPS sites, with encrypted connections using the 256-bit AES standards, for secure data transfers.";
fDesc[11] = "support for drag and drop files into the queue and upload and download all the options and profits of a professional client. Remember this version only works on X64 processors or those that have both instructions such as Intel Core and Core 2 Solo / Duo Processors";
fDesc[12] = "supported. Uses same syntax as built-in \"ftp.exe\" client for easy drop-in replacement. http://www.standardnet works.com/moveitfreely";
fDesc[13] = "your local hard drive.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}