var fDesc=new Array();
fDesc[1] = "Heroes of Warcraft III, three missions showing the Orcs' battles and allows playing through Battle.netâ„¢. The missions included in this demo are totally new and do not appear in the full version of the game.";
fDesc[2] = "land of Iris. The mortals fight for the power and conquest of the land where the ambitions make the players change their alliances all the time with the consequent betrayals. Every decision is important.";
fDesc[3] = "the hit action-puzzler is here! Glory and adventure await in your quest to save Egypt from doom. Defeat the rebellious princes of Megiddo before they overthrow Pharaoh and plunge two lands into chaos!";
fDesc[4] = "to move to the next level. The player will have to take decisions very fast because winning time is the most important thing. When starting the game you will have the possibility of choosing the difficulty level: Normal, Hard or Genius.";
fDesc[5] = "takes on the features that made its predecessor a great game. The visuals are stunning for a 2005 game. The lightning effects are probably the best. The game is all about stealth.";
fDesc[6] = "improve and balance this already addictive game. New campaigns, new troops, new buildings, new spells, new escenaries, a greater balance make this expansion an obligatory purchase for Warcaft's fans.";
fDesc[7] = "find mythological gods, supernatural universes and fantastic scenarios. Your duty is to prevent that the evil god Loki takes over the universe.You can choose from four gods of four different cultures: Greek, Aztec, Norse and Egyptian.";
fDesc[8] = "This title is inspired by the tabletop war game Warhammer Fantasy Battle. The story follows two different strands, each with its heroes and events, one follows the Empire and Elven Forces and the other the Hordes of Chaos and Skaven forces.";
fDesc[9] = "that rains hundreds of bullets, will stop over opponents tanks. Porcupine: Projectiles cut through any defense to hit fortified opponents.";
fDesc[10] = "a costume rental shop and you will have to help your customers find the perfect outfit for them. You will have to show your clients the customs, help them choose one and charge.";
fDesc[11] = "Operative X who wants to capture a Cold War-era criminal mastermind called Dr. Chaos. As in any hidden object game, your goal is to travel to different locations looking for clues by finding the objects on a given list in a certain scene before the time runs out.";
fDesc[12] = "Collect cleverly hidden items, solve brain-bending bonus games and stop this vile villain before he completes his dastardly plan. Interpol: The Trail of Dr. Chaos Deluxe is a delightful adventure for the entire family.";
fDesc[13] = ", print/import/export and more. It can remind you of appointments via popup dialog, or optionally send email reminders to a specified email address - allowing you to get reminders, even if you are away from home. If you commute between 2 computer locations, you can use the built-in FTP synchronization feature to exchange and sync data with another install of Chaos Manager (e.g in your office). Additional features include password protection, customizable interface with many skins to choose from and more. As far as features, Chaos Manager is a mostly basic PIM, but the FTP sync features and email forwarding add some good features that may be more useful to some, than other advanced organizer features.";
fDesc[14] = "and have them available. Take full advantage of all the tools provided, the strategic areal views will help your team to plan ahead.";
fDesc[15] = "single ship shooting various sized space objects from the sky, Spheres of Chaos delivers an eye-boggling visual encounter...";
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 = '...';
}
}