var fDesc=new Array();
fDesc[1] = "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[2] = "You will spend a lot of time playing it because it is an easy and mind free game. The purpose of Chainz 2: Relinked is to rotate links to create matches of three or more or make use of the four-way link to make matches around corners and finally clear the board.";
fDesc[3] = "that rains hundreds of bullets, will stop over opponents tanks. Porcupine: Projectiles cut through any defense to hit fortified opponents.";
fDesc[4] = "United States. Start your mission at the Acropolis in Athens and travel all around the world in order to fill the 3 chambers of the museum, the West Wing, the East Wing and the Main Hall. Good luck on your search!";
fDesc[5] = "landscape, complete with red fog and a starry sky. Multicolored lightning bolts strike all around you, while you hear realistic stereo sound effects. Animated crossline and hieroglyphs add to the mysterious, other-worldly feel. The photo-realistic 3D graphics will impress you.";
fDesc[6] = "(The Last StarFighter software) was created as an exact copy of the movie. Within the game, you will be recruited by the Star League to pilot a spacecraft and you will have to fight in an intergalactic war.";
fDesc[7] = "astronomy. HandyAvi has a built-in movie viewer, movie editor and Meade telescope control system for astronomy users.";
fDesc[8] = "threats of space, from asteroids to aliens.";
fDesc[9] = "Your mission is to help this Ninja sheep destroy all those enemy robots.";
fDesc[10] = "screensaver will take you to a very mysterious place in the middle of a severe electrical storm. You will be able to see lightning bolts everywhere around you. The scene is so realistic that you even feel like running for shelter.";
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 = '...';
}
}