var fDesc=new Array();
fDesc[1] = "application physically defragments the Windows registry file to give it the proper linear structure.";
fDesc[2] = "only needed temporarily and erasing them will release important hard drive space. It runs quietly on startup, clearing the cache every time Windows boots.";
fDesc[3] = "most obvious new feature. With more tricks and an overall more attacking mentality, with players encouraged to take people on. More licensed teams are included along with new boots, hairstyles and an improved Master League.";
fDesc[4] = "Cache), checks your Internet Settings (HTTP, TCP/IP, IE, Firefox), unnecessary Start Up programs, checks your Registry to fix it and suggests some tweaking that can be made to enhance your system performance.";
fDesc[5] = "adjust the degree of opacity for each window using keyboard shortcuts or by doing a right click on the intended window. The program has also the ability to make the Windows TaskBar transparent.";
fDesc[6] = "it? First of all you need to be aware of what a virtual machine does. It emulates a virtual environment in which you can run different operative systems on top of your base operative system.";
fDesc[7] = "vertical inclines, killer jumps, and sharp bank turns. The player will jam through giant snowflakes and charge big tables. The program will install WildTangent console in order to properly run SuperJam. This console may be needed to run other WildTangent games, too.";
fDesc[8] = "beautiful Fiona and Puss in Boots, besides a good number of secondary characters. Now it is only matter of waiting what this crazy characters have to offer us doing what they know what to do.";
fDesc[9] = "task is to have fun and collect as many tickets, as you possibly can. Once you have a certain amount of tickets, you can trade them for prices. There is no time limit and you can re-play each game as many times as you want.";
fDesc[10] = "game features colorful graphics with funny characters (Dora and her friends Boots, Backpack and Diego from the popular program Dora the Explorer), and great music and sound effects.";
fDesc[11] = "applications which run during the windows startup process. It will display you all the programs which reside in the various windows startup locations.";
fDesc[14] = "placed in your StartUp folder so that it starts every time the computer boots up.";
fDesc[15] = "activity such as created or terminated processes, boots etc.";
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 = '...';
}
}