var fDesc=new Array();
fDesc[1] = "more than 40 U.S.cities from coast to coast, Canada and Mexico. Your goal is to build a fleet, deliver the goods to make money, and finally defeat the competition.";
fDesc[2] = "invasion. For achieving this, you must kill everyone coming your way. You begin shooting ships, that need to be hit several times to be sunk, and then the soldiers that would emerge from the ships, if they can reach the coast.";
fDesc[4] = "real-time gameplay, with the ability to pause the action at any time. A player can generate a new character or bring a current one from \"Baldur's Gate\" or \"Tales of the Sword Coast.\" The player has to fight in battles in the title gradually and there are hundreds of monsters to slay.";
fDesc[5] = "you have to run your loads from coast to coast. Your goal is to build a fleet, deliver the goods to make money, dominate the roads and eliminate the competition.";
fDesc[6] = "features many card games, slot machine simulations, video and table games ALL in ONE package. Best of all - it's ALL FREE!";
fDesc[7] = "quality pictures and a user-friendly interface, Atlantic Lighthouses offers plenty of options for you to enjoy the gameplay. Atlantic Lighhouses is an excellent puzzle game that is really worth trying.";
fDesc[8] = "make the cut when Half Life 2 was released. After a year, the developers came up with new technologies that they wanted to try before releasing Episode 2 of HL2. Thus, they released this game as a download for owners of the Windows game.";
fDesc[9] = "Navy and the Coast Guard. Seahawks and Jayhawks are now available together for your flying experience in the “Seahawk & Jayhawk X (FSX+FS2004*)” package.";
fDesc[10] = "features the ability to continue the adventures with the character the gamer created in the original Baldur’s Gate. The gamer can join up with old friends or meet old enemies.";
fDesc[11] = "scenery has 15 high detailed airfields like EDXW - Sylt/Westerland, EDXY - Wyk/Föhr, EDXB - Heide-Büsum, EDXO - St. Peter-Ording, EDWR - Borkum, EDWJ - Juist, EDWY - Norderney, EDWZ - Baltrum, EDWL - Langeoog, EDWG - Wangerooge, EDXP - Harle, EDWP - Bremerhaven, EDWS";
fDesc[12] = "can be played after purchase. This pirate-theme story will take you to several quests and a good amount of fun. This is a must have for NWN fans.";
fDesc[13] = "fifty great puzzle games for all ages. What is great about these games is that they help us forget for a while the stressful working days, and refresh our minds with its challenging yet soothing gameplay.";
fDesc[14] = "deserted island and beautiful sea coast. With Tortuga Island Screensaver you will find yourself in a dreamland and feel the spirit of adventure.";
fDesc[15] = "ExterPassive.com, you can use video as desktop wallpaper or as a screensaver. Sea coast and other live natural videos are included.";
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 = '...';
}
}