var fDesc=new Array();
fDesc[1] = "Entertainment. In 2001, this game became one of the most popular on-line games through, inter alia, free servers that Blizzard offers, forming the network Battle.net.";
fDesc[2] = "you expect. This game includes shooting, fire, weapons and equipment, special effects, intense battles, worthy adversaries. I think you won’t be bored, as you are waited for different surprises and real challenges.";
fDesc[3] = "futuristic game is set in the twenty-sixth century, in which the player has to assume the role of the Master Chief, a cybernetically enhanced \"SPARTAN\" super-soldier.";
fDesc[4] = ", is now available for Windows Vista. This is the first Live platform title for PC which is similar to the gamers community platform Microsoft developed for its Xbox 360 console.";
fDesc[7] = ", an undead antihero who takes on a futuristic city using nothing but his own carcass and the weapons of his possessed enemies. This third-person action game uses the Halo engine and integrates tongue-in-cheek humor and a strong storyline with innovative combat. In death, Stubbs has finally achieved the success and power he never had in life – and he sees no reason to stop until all of Punchbowl, Pennyslvania is his. Of course, billionaire playboy industrialist Andrew Monday has other ideas. The tension mounts until the city explodes in a full-scale human vs. zombie war. Features: * Be the Zombie in an epic battle between the living and the dead. * Take over Punchbowl, an immersive, futuristic city built with the Halo engine. * Convert bitter enemies into a horde of zombie allies by eating their brains. * Use your body as a weapon: explosive gut grenades, toxic zombie sputum, a...";
fDesc[8] = "immerses the player in a fierce war between an intergalactic space colony called Halo and some stellar alien invaders known as the Covenants.";
fDesc[9] = "Its simplicity may be misleading because in addition to its playing and recording features, it offers a huge amount of different sounds, from Accordion to Xylophone.";
fDesc[12] = "pictures in an easy way and in just a couple of seconds. Thanks to this program, you will be able to combine your pictures and merge them into one image.";
fDesc[14] = "the babysitter of baby monsters. Some of the actions you have to take care of are: placing babies in a crib for a nap, putting hungry babies in a high chair to be fed, after a fight, put both babies band-aids on, among others.";
fDesc[16] = "not all this program does. Using this application you will be able to edit your image files with a lot of effects such as mirror, various filters, rotate, flip, watermarks, color enhancements, margins, crop and more.";
fDesc[17] = "island, in the middle of a lake. Maybe you have walked for a long time looking for the tree and, when you finally find it, you just stay standing there watching in awe. You can feel the magic and the mystery all around you.";
fDesc[20] = "is a young woman in the babysitting business who’s obviously not afraid of monsters, since the special thing of her business is that she takes care of baby monsters instead of baby humans.";
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 = '...';
}
}