var fDesc=new Array();
fDesc[1] = "Program often can not completely uninstall some applications and broken registry keys. Revo Uninstaller is a better and easier way for you to completely uninstall any unneeded application that standard Windows Add/Remove Program can't remove.";
fDesc[2] = "system administration and automation. Previously, we were using JScript ( Java Script ) and VB Script for this purpose. Here, its all available in powershell. It is also more secure than the Java Script and VB Script.";
fDesc[3] = "Unlike eMule, DreaMule automatically connects to the network, so you don't have to stop to inspect the list of servers, or configure the servers.met";
fDesc[4] = "maximum performance. Scanning process finds and removes in a safe manner the following malicious software (Malware): Trojan Horses, Dialers, Worms, Spyware, and Adware.";
fDesc[5] = "and the instruction are clear and easy to understand. An old diary has been discovered. The problem is that most of its pages have been torn out. You must find the missing objects in the different rooms to unlock their doors and retrieve the missing diary pages.";
fDesc[6] = "unwanted and unauthorized access through internet or a network. PC Tools Firewall Plus monitors every application running 24x7 and saves your computer from trojan horses, keyloggers and other malware. You can manually set access for an application.";
fDesc[8] = "spider man whose mission is to stop Electro from taking over the world. Throughout the game, user swing from building to building, picking up power-ups, beating up thugs and hired goons, and every so often confronting a boss who then proceeds to whip the living tar out of them.";
fDesc[9] = "viewers often only show you the processes and that is all they do. What's Running takes things one step further by adding services, modules, network connections, and more to the mix.";
fDesc[10] = "under the ocean and destroy mad machines that are throwing dangerous and toxic waste to the ocean. Shoot and place balls in groups of identical color to stop this toxic and dangerous train. If it reaches the limit line you will lose.";
fDesc[11] = "invasion. For achieving this, you must kill everyone coming your way. You begin shooting ships, that need to be hit several times to be sunk, and then the soldiers that would emerge from the ships, if they can reach the coast.";
fDesc[12] = "has been around for quite a while, and its popularity has been increasing ever since. It deals with a common problem of the multi-tasker: doing as much as he/she can from a single location.";
fDesc[13] = "resources consumption, it leaves us navigate quick and safely, free from the annoying advertisements, banners, pop-up ads and flying, and so on.";
fDesc[14] = "product is designed for a local network. It e-mails or exports chat logs by only indicating the IP address you wish to monitor. If you set it, the program also can block any chat conversation or use passwords and hotkeys protection.";
fDesc[15] = "undesired inbound and outbound traffic, in order to enhance the security of your network. The program is very simple to use, but you will need experience and knowledge of managing a network. Be careful!";
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 = '...';
}
}