var fDesc=new Array();
fDesc[1] = "from Electronic Arts. It shows the status of components available. Much like Steam, many games require the manager to be online before the game functions properly.";
fDesc[2] = "experienced users. You can choose over 200 templates to make your work more creative. You can create wide range of projects such as collages,comic strips, calendars, greeting cards.";
fDesc[3] = "funny stuff. Plot: The third delivery of this saga comes back with an old subject: the time travel. In this case is used by the soviets to eliminate a scientist, Einstein and his developments which will be vital for the Allies.";
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] = "standard for the future of RTS gaming once more, C&C 3 takes you back to where it all began—the Tiberium Universe. Published by Electronic Arts Inc.";
fDesc[6] = "famous books of J.R.Tolkien. Plot: Of course that you will be able to find all the characters of the book, but in this case you will be able to be in more battles than in the film.";
fDesc[7] = "The Sims 2. The game adds new content and features for the Sims. It also focuses on apartment life, allowing you to live in an apartment, and even the chance of having roommates. The expansion is perfect for The Sims fans.";
fDesc[8] = "find a sense of familiarity with the new features. The game puts you in the shoes of a skilled parkour runner in a struggle against evil. It has excellent graphics and gameplay. It is really a new concept every gamer should try.";
fDesc[9] = "fourth episode in the SimCity series and originally was released on 2003. It has a single expansion pack known as Rush Hour which adds additional features to the game. But the Deluxe Edition contains the original game and Rush Hour combined as a single product.";
fDesc[10] = "Wars. It was Developed by Electronic Arts.This expansion is able to fill part of the gaps left in C&C 3 using, as usual, the film part of the game.";
fDesc[11] = "improvement of the game predecessor Star Wars: Battlefront. This game adds all the new elements of the last film of the saga, Episode III";
fDesc[12] = "features which satisfies the every creative needs of the graphics users. It is easy-to-install, repair, manage and fast enough with a wide range of tools and special effect features. Packed in a 3CD media, it includes a number of clip arts and 3D text effects to make your work easier than ever.";
fDesc[13] = "version of this successful sporting saga in the United States and North Europe. The fans of Hockey, may feel the excitement of the sport in this new delivery of the EA Sports series.";
fDesc[14] = "compilations, videos and the CD/DVD file archives. The application comes with an interactive and easy to use graphical user interface making things easier for the user, and comes with many templates, clip arts, fonts and nice background images.";
fDesc[15] = "files, remove logs, copy files, open PDF files, view metadata, update, print, apply security, etc. Changes are reflected in the original PDF files. ARTS PDF Workshop is included with Nitro PDF Professional; you cannot obtain the product separately.";
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 = '...';
}
}