var fDesc=new Array();
fDesc[1] = "advanced users. The program features a simple and intuitive Explorer style interface that shows the local and remote folders in a clear way and allows you to customize them the way your want.";
fDesc[2] = "remote images, and watch how CuteFTP Pro accelerates your file transfers, this professional version comes with an advanced security protection to ensure the easy transfer of your top secret files!";
fDesc[3] = "allows us to connect to a remote computer server. The connection modes are Full Control, View Only, Telnet, File Transfer, Shut down, Chat, Voice Chat and Send Message. Depending on the selected mode, a specific window will be opened so we can enter the details. We can create Phone Books.";
fDesc[4] = "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[5] = "quite a lot in the past few years. It has included features from virtually every other client out there. I like what they have done to the design, too. The main similarity you will find is its two-panel approach.";
fDesc[6] = "can perform transfers and keep on working on other files in local or remote sites. The program uses multithread technology for safer and faster file transfers.";
fDesc[7] = "handy options to make easy all the settings and files transfers. Features such as set file properties, rename, copy, delete files and directories and folders, both at remote and the local sides.";
fDesc[8] = "The application supports the regular options for TFTP, such as file size, block size and timeout, for ensuring maximum performance and total compatibility. The application supplies fixed ID address as well as automatic dynamic IP address.";
fDesc[9] = "downloading files from any remote FTP server. The program supports using proxies and passive connections. The program has an FTP server with many features.";
fDesc[10] = "and down loading files to and from the user PC and FTP servers. The user interface enables the user to 'surf' FTP servers as easy as navigating with Microsoft Internet Explorer. It includes a URL address bar for downloading from FTP and HTTP sites.";
fDesc[11] = "folders between panels, and perform some extra commands like convert exe files to zip and vice-versa. TwoDirs includes a FTP client as well.";
fDesc[12] = "and from any directory or folder of the FTP web site. The application can perform searches by browsing local and FTP sites, even off line";
fDesc[13] = "AbsoluteFTP is a WinSock application for Windows, for working as an FTP transfer system between user PC and FTP sites. The first time the program runs, it asks for the desired location to store the Sessions database. Automatic broken transfers resumes and file synchronization.";
fDesc[14] = "publishers remark is the high security on file transfers. The application uses SSH/SSL channels when uploading or downloading files and folders. Whenever a transfer is made, the program checks its integrity to make sure that the files have been moved safely.";
fDesc[15] = "files between user PC and FTP sites. The program includes drag and drop facility for selecting the files to transfer in both ends of the connection (user PC and FTP site). It manages files up at the FTP site and the local drives: rename, delete, copy and paste, move, create folders, etc.";
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 = '...';
}
}