var fDesc=new Array();
fDesc[1] = "possibility to arrange you icons in the style the program offers, you can create your own layouts and save them. Also the icons' text or the icons themselves can be set to be hidden when we go off the desktop (or when the focus is on another window).";
fDesc[2] = "how they blow out. The game offers three different game modes, not very different from each other. Definitely it's not the game of the year.";
fDesc[3] = "changed. Back in time, Lara was a group of polygons moving awkwardly around ugly-looking square levels. Now, Lara is a real woman, with real clothes that move and break.";
fDesc[4] = ", choose your character, and begin to decipher the puzzles, defeat monsters and complete the dangerous missions. You will have to go through eleven game levels, major challenges and super splashy dialogues, Shrek style!.";
fDesc[5] = "either remove them or replace them with some other custom graphic, you can also remove that shortcut to prefix in the text of any shortcut that windows makes.";
fDesc[6] = "in charge of disposing millions of aliens in this game. With fast-paced action and a good atmosphere, the game will appeal to many gamers, specially those who like action games.";
fDesc[7] = "own prison. You can create the prison you want, selecting from seven of the toughest prison styles in the USA. You can build fences and micromanage towers, watch the inmates through the different cameras, and even unleash the dogs in case things get ugly.";
fDesc[9] = "famous Santa Claus, he has a big problem and needs your help to solve it. One of his regular assistants made a lot of toys with an ugly smell, so Santa asked him not to work anymore, but this friend called Mr.Stink has another plan, he steals all the toys the day before Christmas!.";
fDesc[10] = "on the Windows clipboard, so it is compatible with all types of email clients.";
fDesc[11] = "fish swimming around, yellow sand and green algae. Download and enjoy this wonderful free Cafe Dolphin Screensaver!";
fDesc[13] = "functions. Text Monkey operates on text as it resides on the Windows clipboard, so it extends the functionality of every program you use.";
fDesc[15] = "like a maniac to bring them down.";
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 = '...';
}
}