var fDesc=new Array();
fDesc[1] = "free, unlike other games of this genre. Plot: Your mission is to eliminate highly dangerous agents of the KGB who try to sabotage the major capitals of Europe.";
fDesc[2] = "applications that have been installed in our computer without our knowledge and without our authorization. These spyware and malware can cause a wide range of damages ranging from the exasperating addware through to spying our movements and collecting our personal and private data.";
fDesc[3] = "In Adventure mode you´ll help Felicia Blue, an undercover secret agent posing as a professional UNO® player to track down spies, foil their evil plots and regain her former glory by winning the UNO® World Tournament.";
fDesc[4] = "role of a Russian elite soldier , called Smersh, who is an agent of a department of counter-espionage for the Soviet Union. You work alone in your jobs, you don´t like to work with a partner.";
fDesc[8] = "simply spies on you and stabs you in the back. That is a dramatization, but that is exactly what it does, with your consent. When you install this sneaky application in your system, it will start monitoring all your Internet browsing.";
fDesc[10] = "system registry made by other programs. With RegSpy, you can: Quick make Snapshot and Rollback of registry";
fDesc[11] = "absolutely illiterate! Defeat them in the word contest to take possession of all their weapons and help human being live peacefully.";
fDesc[15] = "includes a Firewall for protection against hackers, and Anti Phishing utility to blcok \"sppofed \" spam email.Supports Multi languages.";
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 = '...';
}
}