var fDesc=new Array();
fDesc[1] = "uses industry standard IP protocols to allow devices to automatically discover each other without the need to enter IP addresses or configure DNS servers.";
fDesc[2] = "such as audio, video, images, program, documents, and other files, with users all over the world. LimeWire has been recently updated and now it features a smarter colorful interface.";
fDesc[3] = "is dynamic unlike other download managers. Other features include resume broken downloads due to broken network connections, error recover and site grabber for web-sites. Apart from the regular files that can be downloaded, IDM also supports embedded video files";
fDesc[4] = "PC or server all around the world within just a few seconds. You can remote control your partner's PC as if you were sitting right in front of it. Find out why more than 15.000.000 users trust TeamViewer!";
fDesc[5] = "of registered users, you'll find that Camfrog Video Chat is a fast, fun, easy to use video chat community. Enter a chat room, create one or search for new friends and read, listen and see what they're up to!";
fDesc[6] = "audio/video files as soon as a download starts. With IDA download and save video from popular video sharing sites like YouTube. Some IDA features include: Scheduler, FTP Explorer, ZIP browse before downloading. IDA integrates into all popular browsers.";
fDesc[7] = "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[8] = "your computer when ever you want. Lock My PC can be used for home or office use because of it's simple interface and powerful locking system. Lock My PC can automatically lock your PC at every start up, after system stands By or after desired minutes of inactivity.";
fDesc[9] = ", firewalls, Unix hosts. Includes PIX firewall TCP support and many customizable features.";
fDesc[10] = "from the Cisco Systems company.";
fDesc[11] = ", switches and firewalls). Automated config backups, password changes and scripted configuration commands. Cisco, 3Com, Foundry etc";
fDesc[12] = "distance. With iRemotePC, you can invite guests to your PC and transfer files between PCs. Built to work securely behind Firewalls and NAT.";
fDesc[13] = "network load. It is a very simple and fast program which can simulate client activity.";
fDesc[14] = "This browser hijack protection is intended to cover those security gaps left by firewalls and antivirus protections. It performs monitoring actions on delicate issues of your system for all sort of threats, no matter which software is attempting to provoke the trouble.";
fDesc[15] = "Firewall provides protection to Windows-based Servers, stand alone PCs, and/or LAN workstations from internal and external threats.";
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 = '...';
}
}