var fDesc=new Array();
fDesc[1] = "GoldWave, a very advanced program that will help you perform from simple to complex audio projects. With this application you will be able to play, edit, mix, restore and apply many audio effects to your files that will let you get professional results.";
fDesc[2] = "will be able to select among cats, dogs, birds, tropical fish and hamsters. But there are not only animals in this expansion: it also brings new objects as houses for dog, cages for parrots, pictures and more.";
fDesc[3] = "versions. The main difference is that the game is done completely in 3D and allows a total control of the camera, and may change the angle of vision, getting closer and farther from the details of the adventure map as well as during the battles.";
fDesc[4] = "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[5] = "with their friends. You can also have your seems wearing the latest teen fashions including track suits, designer jeans, and yoga outfits. In addition, The Sims 2 Teen Style Stuff is the first stuff pack to feature a The Sims contest winner!";
fDesc[6] = "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[7] = "a completely new world, with new rules regarding the schools of magic. It is also the first to depart from the traditional mechanics of the series";
fDesc[8] = "just the same title a year ago, but with a series of expansions and is shipped at a reduced price, so it's a good opportunity for those who are lost in time.";
fDesc[9] = "Celebration expansions and a bonus DVD with tips and tricks. This is the pack you need to get if you are new to the Sims. But if you have other packs there is no new content you need in here.";
fDesc[10] = "game was developed by Gas Powered Games and published by 2K Games. This is the expansion to the second half of a game which is not limited to repeating what has already been seen, but adds some new features to improve the original.";
fDesc[11] = "different games: Half Life 2 and its two expansions, the fascinating and innovative Portal and the funny multiplayer Team Fortress 2. Are you sure you can resist? The best first-person shooter for PC is at The Orange Box. An essential pack .";
fDesc[12] = "Tycoon 2: \"Endangered Species\", and\"African Adventure\", as well as all the animals scenarios and features from Zoo Tycoon 2. This incredible Zoo Tycoon games compendium includes seventy incredible animals and its corresponding biomes.";
fDesc[13] = "or failures in it that prevent you from enjoying satisfactorily this great title. Each time that the game presents an error in itself, whether upon executing it or upon installing some of its expansions, The Sims File Cop can give you a hand.";
fDesc[14] = "package you will experience the complete game with “An Empire Divided” and all the expansions like Jump to Lightspeed, Rage of the Wookiees and the Trials of Obi-Wan.";
fDesc[15] = "expansion packs, plus a new continent, new zones and new quest. RoK is ideal for the experienced users and the beginners alike. The game keeps its successful formula and is very addictive to play.";
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 = '...';
}
}