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] = "performance. It also has a network accelerator feature that can accelerate the network speed and a startup manager that can manage startup applications";
fDesc[3] = "email large attachments, IM a folder, or publish your downloadable videos to the Web? Maybe you'd just like to watch full-screen HD Internet TV. Meet Pando.";
fDesc[4] = "polished since its beginnings. SmartFTP has a really intuitive graphical user interface, which really makes it easy to upload files to a server or just move files around using the FTP protocol.";
fDesc[5] = ", labeling, applying color codes. It allows you to search, view, prioritize and convert between formats. The developer doesn´t provide trial copies of this version.";
fDesc[6] = ", efficient File Transfer Protocol or FTP Client and CuteFTP Home 8.3 could be just the proogram you're looking for. With this program you can transfer files of any type or size including your web pages and any multi-media files to, from, and across the Internet.";
fDesc[7] = "and all other basic features needed for uploading/downloading from a remote FTP server . The program's layout is very simple and easy to deal with .";
fDesc[8] = "client suites around and is specially useful for corporate environments. Of course, this application has all the main features of an FTP client - you can connect to FTP sites, create, delete, modify, rename and copy directories and files, and more.";
fDesc[9] = "transferring files between your computer and a remote FTP server usually used for webmaster to control their website or for storing files Remotely .";
fDesc[10] = "upload files to FTP folders. AceFTP uses state of the art authentication techniques and provides the maximum possible security for your data transfers. AceFTP makes easy to drag and drop files to and from your website.";
fDesc[11] = "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[12] = ", and, in this case, it actually means great. The main difference you will find when you open this application is that the almost-always 2 vertical panels are horizontal here. You are given one panel on the top for your local machine, and the one at the bottom represents the FTP site.";
fDesc[13] = "additional functions like support for secure connections, folder monitoring, file synchronization, among others. It allows you to resume downloads and uploads, and filter and transfer files of more then 4GB as well.";
fDesc[14] = "or anyone that transfer files on the Internet. Whether if you are publishing a Web page, downloading digital images, music and software, this FTP client will get your job done quickly and easily, even if you are a newbie.";
fDesc[15] = "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";
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 = '...';
}
}