var fDesc=new Array();
fDesc[1] = "Component of Acer Empowering Technology • eData Security Management • eLock Management • eNet Management • ePower Management • ePresentation Management • eRecovery Management • eSetting Management";
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] = "to enter the new continent unexplored with their richness by exploiting some indigenous to conquer. This version has several bugs and lacks some features present in version 1.1, like some out-of-sync bugs and multiplayer scenarios.";
fDesc[4] = "Iroquois or the Germans, improving the Home City, and enjoying the first two single-player missions of the continuing tale of the Black family.";
fDesc[5] = "wireless guitar that you can use to play the game. The goal of the game is to play the songs that are featured on the game with your guitar. That is achieved by hitting notes when they appear on screen.";
fDesc[6] = "civilization, or as the imperialistic British. Players also have the opportunity to try out the new random map Honshu, and the King of the Hill game type.";
fDesc[7] = "Gothic 3 put you in the foots of a hero without name, who has the ability to be a warrior, an archer or a wizard. Plot: The major character comes from the seas to the kingdoms of the continent, where the Orcs have invaded almost every human";
fDesc[8] = "the other armies fighting to control the stage, or to meet other status of victory specified in each scenario. Heroes of Might and Magic III Complete is a compilation of The Restoration of Erathia and both expansion packs.";
fDesc[9] = "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[10] = "fabled Golden Jewel Board. Uncover hidden jewels, and then use those jewels to complete your quest. While playing with a mysterious jewel board, their daughter Natalie unknowingly pops open a secret compartment...";
fDesc[11] = "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[12] = "game providing them with a ‘bridge’ continuum from edition 3 to 4 of Gothic. This add-on is rated for Teen to Adult use and presents players with an enhanced interface, updated graphics of outstanding visual quality and up to 20 hours at least, of new game play";
fDesc[13] = "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[14] = "from the fifteenth century to the French Revolution. Plot: this game has its beginning in 1453, the year in which the Turkish take Constantinople";
fDesc[15] = "interesting story. Once you match up the necessary tiles to win the game, you must uncover and match the golden Yin and Yang tiles.";
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 = '...';
}
}