var fDesc=new Array();
fDesc[1] = "seventh delivery of the Grand Theft Auto saga. The game contains new and numerous improvements over previous releases, but with the same spirit that characterizes this saga of controversial video games.";
fDesc[2] = "of a few different soldiers fighting for different Allied factions during World War II. Each of the game's 10 missions is split into different stages. The game's graphics are particularly great, specially the smoke effects from smoke grenades and explosions, and sound is nothing less than superb.";
fDesc[3] = "period. The game starts with a team of US scientists who are sent to an island in the south of China to investigate a weird phenomenon but face a blockade by the North Korean government. Needless to say, that is one critical situation.";
fDesc[4] = "expansion to Crysis. This title is a standalone game and does not need the previous game to be installed to run. Apparently, this new title is not a typical expansion, it brings a lot of changes from its predecessor and it shows the story on the other side of the Island.";
fDesc[5] = "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[6] = "secure distribution and collaboration. With Acrobat Standard you can: * Combine and arrange documents * Manage shared reviews * Use familiar review and commenting tools * Save in Microsoft Word * Capture web pages * Sign documents digitally * Etc.";
fDesc[7] = "Faerie Queen’s Magic Jewels! Cast magical spells to battle ruthless monsters and the forces of darkness in your quest to recover the Queen’s glittering treasures!";
fDesc[8] = "to 28 different weapons to choose from, travelling from the sunny South to the frozen North across the whole country, and on a safari in Africa. We can play online against others members in any tournament already created or we can create our own for them to join in.";
fDesc[9] = "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[10] = "Puerto Rico, and Canada to use in our computer or GPS device. It gives information for both metropolitan and rural areas as well as traffic issues and data, such as one-way road, roundabout, etc. It features voice commands for a safer driving.";
fDesc[11] = "in North America, gives the player a true-to-life hunting experience with some of its exciting features. Once the hunting character is selected you can start with hunting. There are about 38 hunting and fishing adventures which allow you to hunt trophy animals, birds and fishes.";
fDesc[12] = "default landclass. This add-on product tries to correct all the missing cities and towns and the desertification effect in the default landclass of FSX.";
fDesc[13] = "screensaver will take you on a journey to the North Pole, the place where Santa Claus lives. You will get a very close look at his house, so you can get an idea of how \"Mr. Christmas\" himself, celebrates the joyous day.";
fDesc[14] = "location of various planets at the instant when a particular individual was born. The application primarily generates a rashi chart of an individual in various styles like North and South Indian, and these charts can be used for expert analysis for making accurate predictions.";
fDesc[15] = "white bears, penguins, seadogs, icebergs, cold ocean surface and snowy landscapes.";
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 = '...';
}
}