var fDesc=new Array();
fDesc[1] = "III and its expansion pack, and it tells the player that the conflict between the factions is ideological, and not a merely good-versus-evil thing. Depending on your starting point, players will have to undertake different quests, face different monsters, and so on.";
fDesc[2] = "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[3] = "continuing the story of the medieval epic world, it incorporates two important improvements - the 3D graphics and two new races that take part in the battles. Warcraft III All Products includes the original full game, its expansion packs and its update patch.";
fDesc[4] = "Warcraft series . Besides continuing the history of the medieval epic world of Warcraft it distinguishes from its predecessors by incorporating two important changes: the 3D graphics and the two new races.";
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] = "Corporation. This Windows theme completely modifies and transforms your old XP theme. The theme is in the form of a control panel interface which can be easily used to apply the World of Warcraft desktop.";
fDesc[8] = "Entertainment. This expansion pack includes a new campaign for the game which consists of three individual chapters that continue the story of the original StarCraft, new units, upgrades and types of terrain.";
fDesc[10] = "fully adictive game offers a bunch of new attracting features. With its amazing graphics and visual effects, this suite of the saga delights the already devoted fans and gains new ones.";
fDesc[14] = "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...";
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 = '...';
}
}