var fDesc=new Array();
fDesc[1] = ", including your financial information and sensitive business documents. Protect yourself! Free to try.";
fDesc[2] = "look. You can set the transparency or opacity of the taskbar from 1% to 100%. If you want your taskbar to be darker then the opacity should be increased, and for lighter taskbar (transparent taskbar) the opacity should be lowered.";
fDesc[3] = "and setup all the bits and pieces of our system, including Windows, Accessories, Desktop, Explorer, File Systems, Login and Authentication, Start Menu and Task bar, Startup and Shutdown, System, Troubleshooting, Hardware, Network, Security and Software.";
fDesc[4] = "languages. Applejuice Community claims to give their components more speed and security through advanced Community Features.";
fDesc[6] = "software prevents other users from cheating, hacking, or using other unfair advantage over you while playing online games. By a proprietary cheat detection system, Game Vindicator uses ways of detecting and blocking illegal software, viruses, hacks or any other suspicious application.";
fDesc[7] = "default keys present on the keyboard to something else. For example, you can easily map your windows key to act as backspace or something depending on your choice.";
fDesc[8] = "sizes, colors and styles.";
fDesc[10] = "Mr. Robot is a 3D action-puzzle-adventur e-rpg. Inspired by classic filmation games such as Knight Lore and Alien8 and mixed with'Ghost Hack' - an abstract RPG in which the player hacks into computer terminals and battles defensive computer programs.";
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 = '...';
}
}