var fDesc=new Array();
fDesc[1] = "browse through all the game available and download demos, trailers, or the complete game. Once a game is downloaded through Valve's Steam, users can use Steam's multi-player service.";
fDesc[2] = "powerful engine that allows you to perform quick, complete or custom scans of your system. Also, you can update its database for having the most current protection. A must-have program.";
fDesc[3] = "Internet performance and more. It provides a categorized collection of tools and utilities, including a disk cleaner, registry scanner, startup manager, uninstaller manager and more.";
fDesc[4] = "variety of keyboard layouts. The program supports novice and expert users who wish to improve on their typing skills. It is appealing to adults and children alike by applying feeback techniques to keep the user interested in taking the next lesson.";
fDesc[5] = "access your Personal Photo Gallery, keep an eye on your appointments, keep track of your Music Library, write down notes as well as having access to Breaking News, Instant Web Searches and Weather Information. There are lots of other things to add.";
fDesc[6] = "active TCP and UDP connections on your computer with protocol statistics. It is a set of utilities like Netstat, Ping, Ipconfig, Route, Tracert, Arp.";
fDesc[7] = "computer. NetLimiter acts like a firewall, but besides allows you specify which application can access internet, you can also specify how much bandwith will consume each application or the overall bandwith.";
fDesc[8] = "supports all flavors of internet connection including DSL, Dial UP and Optical Fiber to name a few. Not only is it an HTTP proxy but it can also act as a SOCKS, Mail, FTP, News and telnet proxy making it a very powerful application.";
fDesc[9] = "when I was using Windows and it was free. It was absolutely awesome, too. It looks a lot like this one, but without the price tag. BWMeter allows you to track your bandwidth usage by means of graphs.";
fDesc[10] = "network connections made in your PC (local and from Internet), arranged in a per-application basis, and also you can limit the bandwidth usage for each one of them.";
fDesc[11] = "ISP. Supposedly, by caching images and filtering advertisements, your connection is freeing itself from the strain overloading them. MyProxy will manage all the requests that your computer makes to the outside of your home network.";
fDesc[12] = "a firewall, but besides let you specify which application can access internet you can also specify how much bandwith will consume each application or the overall bandwith.";
fDesc[13] = "requirements, built-in IP mapping, unique filtering capabilities and more. Fast, powerful and professional.";
fDesc[14] = ", like dial restrictions, advanced Internet statistics, alarms, dial-up password protection, POP3 e-mail checking, al...";
fDesc[15] = ", time, queries, words, etc.; - flexible and powerful content filtering;";
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 = '...';
}
}