var fDesc=new Array();
fDesc[1] = "more features like effects and custom filters that give website developers more functionality in showing better graphics. It is a must on every PC, as many sites rely on this plug-in for showing videos";
fDesc[2] = "capabilities like calendar, task, contact management, note taking, journal, and Web browsing. It can be integrated with Microsoft Exchange Server and Microsoft Office SharePoint Server to provide extended functions to multiple users in organizations.";
fDesc[3] = "shall get a lot of services from windows live. It is a free service created by Microsoft. But there are many features that you will need to pay for like the Windows Live Call, which is something like Skype.";
fDesc[4] = "support to a new protocol being supported to being able to control your downloads remotely, µTorrent 1.8 is making a statement.";
fDesc[5] = "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[6] = "possibilities, which include: Servers, web based, and Kad. It is a completely free of charge application also free of adware, spyware and any other kind of intrusive programs.";
fDesc[7] = "Relay Chat) abounds with information and resources, and mIRC is the best way to get what you want. This IRC client is simple yet powerful and can be ready to go in a snap.";
fDesc[8] = "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[9] = "restrictions about how many clients can connect to a server. It is free of charge for non-commercial purposes. The Server browser allows you to search for public servers. Little suggestion to make: private text message get lost in the other diagnostic messages.";
fDesc[10] = "accounts, such as Hotmail and Yahoo Mail. This program adds cool features for customizing your e-mail messages by adding stationery, emoticons and even voice messages.";
fDesc[11] = "user-to-user conversation. It uses a chat similar to IRC (Internet Relay Chat) . You can configure the channel you are using with many options, send TTS (Text-to-speech) messages or adjust sound effects including surround and playback or record voice streams.";
fDesc[12] = "system as if they were physically there. UltraVNC is divided into 2 applications: UltraVNC Server and UltraVNC Viewer. The former is the program that has to be installed in the computer to be controlled, and, the latter, is the client program.";
fDesc[13] = "The connections it offers are stable with almost no disconnections. It supports all the Cisco VPN infrastructure and its hard to go wrong with this client.";
fDesc[14] = "browser, or you can search files directly through the client. It´s highly recommended to start your downloads from well known sites, to avoid fakes. Since anyone can upload files in a P2P network, some people likes to pretend that a file is something that is really not.";
fDesc[15] = "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.";
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 = '...';
}
}