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] = "depicted in this game is covering a vast area on the earth, i.e. Greece, Egypt and Asia (all ancient civilizations). To begin with the game, you have the opportunity to create your own character.";
fDesc[3] = "installment include the Aston Martin DB7, Ferrari 550 Maranello, and the Lamborghini Diablo SV. With the ability to download more exclusive vehicles from the Need for Speed website, there will always be something new to test drive. For multiplayer-enthusiast s, NFS3 supports up to two players with a Modem or Serial connection or up to eight players with a LAN connection. As if that wasn't enough, the already-stunning graphics have been improved, with an even higher level of attention to detail that includes blowing leaves, smoke from the burning rubber of tires, and amazing weather effects such as rain, lightning, snow, and fog. Finally, there's an all-new Hot Pursuit mode where you scorch the streets on either side of the law: Elude the fuzz as a speeding motorist or enforce justice from a police patrol vehicle. Surely, racing doesn't get any better than this.";
fDesc[4] = "for prince Albrecth who had disappeared. Unfortunately, Tristan’s people were massacred by the horrible daemons inside an underground labyrinth in their search for the prince.";
fDesc[6] = "not-too-distant future, when the humanity depleted nearly all resources of the planet.";
fDesc[7] = "an exciting realm of magic and adventure, with a huge helping of laugh-your-butt-off. Dungeon Runners is FREE to download and play - check it out";
fDesc[9] = "ease of play and the fact that is completely free. The game is similar to RPG games such as Diablo, and although it has its down sides it is pretty solid and fun.";
fDesc[10] = "multiplayer games online. It works with most existing games, such as Half-Life, Quake II, Diablo, Tribes, Unreal Tournament, and...";
fDesc[11] = "more than 600 servers in 56 countries.The most popular games currently on Kali are: Warcraft 2, Descent 1 & 2, Command & Conquer, Diablo, Doom 2, Duke Nukem 3D, Links LS, Mechwarrior 2, Mercenaries, Red Alert and many more...";
fDesc[12] = "Simulator 2004 and 2002, that presents them with over 30,000 miles of scenery that covers San Francisco, Sacramento, Monterey, Santa Cruz, Diablo Ranges, Mount Diablo, the Montara Mountains, the San Andreas Fault,";
fDesc[13] = "as you collect certain items and experience, probably you'll like Kivi's Underworld. Probably the people who will appreciate Kivi's Underworld the most will be those with not very powerful PCs.";
fDesc[14] = "the universe. Dungeon Lords Collector's Edition includes a bunch of new features such as quests, spells, effects, creatures and amazing new heraldries.";
fDesc[15] = "all come into play in this challenging game, as one Hero tries to reunite the kingdom and fight off hostile feudal lords.";
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 = '...';
}
}