var fDesc=new Array();
fDesc[1] = "features. SMS service helps you to send messages to people's mobile phones. I like Yahoo Messenger mainly because of its stealth settings. Games can be played on Messenger. All of these features make Yahoo Messenger the best Messenger software.";
fDesc[2] = "application ever. Nowadays, billions of people use Skype for several reasons. Firstly, it allows you to call anyone who has Skype for free. The call quality is great and you can even go on a video chat with anyone who has a camera.";
fDesc[3] = "Google Talk that really kind of slowed the progress of the messenger down. Now, thanks to it, you can video chat and voice chat with all your contacts. They still have to download the plugin.";
fDesc[4] = "the movement of files considerably and it also adds several functions that are not present by default on Windows. When you are copying files with TeraCopy you will notice that you are given more information than before.";
fDesc[5] = "capable of joining users of ICQ, MSN, AOL Instant Messenger (AIM), Yahoo Messenger, IRC and Google Talk into a single chat space.";
fDesc[6] = "in its communications with advanced encryption and authentication methods. This program is a great option for secure system administration and file transfers.";
fDesc[7] = "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[8] = "when downloading or uploading large files over the internet. There is a suspend/resume capability that allows users to resume interrupted transfers, pause and resume a file transfer as needed...";
fDesc[9] = "separated windows show the local and the remote sides of the connection to an FTP Server on the network. The Site Manager window offers the capability of setting the Site Name, Host address, Port number, Default Remote Directory, User Name and Password.";
fDesc[10] = "The program includes a handy Connection Wizard (tutorial) for making easier the connection process. It guides user step by step to locate and connect to an FTP site, the Host Address, etc. The application includes information for connecting to over 30 types of non-standard FTP servers.";
fDesc[11] = "FTP and e-mail services inconveniences and limits. The best part is that it allows files transference through Internet and networks (private or domestic) using TCP / IP protocol, which allows you to make transfers between different platforms (from Windows to Linux, for example).";
fDesc[12] = "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[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] = "multithread unlimited file transfers, real time information and status of all the transfers going on. Also, the application includes all information about the current status of the TFTP server to the administrator . Users can get detailed logs for file transfers, if selected so.";
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 = '...';
}
}