var fDesc=new Array();
fDesc[1] = "spider man whose mission is to stop Electro from taking over the world. Throughout the game, user swing from building to building, picking up power-ups, beating up thugs and hired goons, and every so often confronting a boss who then proceeds to whip the living tar out of them.";
fDesc[2] = "be told, it hasn't hit the note yet. The game features the HULK, which should be a synonym for chaos, unrest, explosions, etc. Everyone should be afraid of him, but not these people. The game is way too similar to Spiderman.";
fDesc[3] = "laptop to your wireless phone, and in no time you'll be checking stock quotes and sports scores from anywhere, at any time. It provides wireless Internet connectivity from your laptop computer. QuickLink Mobile will quickly turn your mobile phone into a wireless modem.";
fDesc[4] = "events of the last Spider-man movie, Spider-man 3. In this game, you will be able to roam around the whole New York city and put order as you go. A good thing about this game is that it is up to you as how you want to play. You are given a map which tells you where things are happening.";
fDesc[5] = "puzzles, but with a darker and deeper tone. Unlike many hidden object games, Return to Ravenhearst allows you to freely roam from room to room, add items to your inventory that can be used later to unlock new areas or solve puzzles, and investigate objects of interest in a scene.";
fDesc[6] = "includes new characters, new animations, new graphics and updated content. This all makes the game more enjoyable, if you needed to be. The Witcher enhanced version is THE game RPG fans should buy.";
fDesc[7] = "has been ported to the PC. You play a certain secret agent, who is sent to a third world country to set it free. So you roam around in gigantic maps and kill people. The controls are pretty easy to use and understand.";
fDesc[8] = "its predecessor, but, looking closer, you will see a lot of changes. I am personally a fan of the Spider-man games, and I can honestly say that I have played them all. This one is the best so far.";
fDesc[9] = "games nowadays. This game may be old but it has lost none of its entertaining value that catapulted DMA Design (now Rockstar Games) into the successful developing company it is now. Give it a try, you will enjoy it.";
fDesc[10] = "came from an old brass kerosene lantern? Do you remember how its flame danced all the time projecting shadows that were at the same time beautiful and mysterious? Go back in time with the Lantern 3D Screensaver!";
fDesc[11] = "the ancient Rome,in the time of the Republic, between the first Punic War and the rise of the Roam Empire. As you may know this was a turbulent time, full of intrigues, alliances, and fights in the battlefield as well as in the Senate.";
fDesc[12] = "non-linear game with a first person perspective; it features a series of missions including pizza delivery, jet ski racing, and putting \"Brickster\" back in jail.";
fDesc[13] = "series of mini-games that are well done and entertaining. The games are excellent but it seems you finish before you start it. Though in the end it is still a good game.";
fDesc[14] = "desktop and notebook users. Now you can roam the office while accessing network resources, the Internet, and e-mail at speeds up to 54 Mbps ideal for multimedia or other high-bandwidth applications at distances up to 100 meters. The adapter offers the flexibility and convenience of USB connections without sacrificing performance.";
fDesc[15] = "touches, the bigger he gets! After 9 mice, next level, watch out for walls! With superb graphics, comedy sound, awesome control make nibbles a game leaving you biting at your fingers!";
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 = '...';
}
}