var fDesc=new Array();
fDesc[1] = "intuitive and very simple graphical user interface with multi-tab support, thumbnails of visited websites, enhanced autocomplete feature, password manager, and many other features. You can import all your settings from your old web browser such as Internet Explorer and Firefox.";
fDesc[2] = ", provides more up-to-date content and more engaging multimedia than ever before. Whether you’re searching online or offline, it’s the trusted way for everyone in the family to easily find relevant and reliable information on just about any subject.";
fDesc[3] = "pre-designed history or can create your own history playing in the classical way. The game is a version of The Sims 2 optimized for laptops and lower-end desktop computers.";
fDesc[4] = "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[5] = "changes in the climate, which affect your Sims dramatically. The Four Seasons are included in the game: Spring, Summer, Autumn and Winter. Each station and its respective climatology can affect radically the needs, aspirations, desires and fears of your Sims.";
fDesc[6] = "trips and preparing holidays for the Sims. The expansion offers three different destinies in which the Sims can spend some days far away from their houses of their work, on holidays";
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] = "into an army capable of annihilating the Allies once and for all. Battling alone, you're on an intense mission to pierce the black heart of the Third Reich and stop Himmler -- or die trying. Fighting in advanced team-based multiplayer mode, you'll wage your own WWII in an all-out Axis vs. Allies contest for frontline domination. Powered by the Quake III Arena engine, the Wolfenstein universe explodes with the kind of epic environments, A.I., firepower and cinematic effects that only a game created by true masters can deliver. The dark reich's closing in. The time to act is now. Evil prevails when good men do nothing.";
fDesc[9] = "with. This updating adds furniture, outfits and objects to The Sims 2. However, although the objects, which include new themed bedroom sets and some decorative objects, are interesting enough, they do not provide any real new functionality to the game.";
fDesc[10] = "women. The pack adds songs by Jibbs, Keke Palmer, Kevin Michael, and NLT to the Pop and Hip Hop stations. The \"stuff pack\" also comes with three pre-made H&M stores.";
fDesc[11] = "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[12] = "furniture and decoration from the popular Swedish furniture chain IKEA, mainly concentrating on living rooms, bedrooms and home offices. It is the second stuff pack to feature products of a real-world company.";
fDesc[13] = "festivals of all types, including the celebration of anniversaries and other elegant or informal events. Of course we will have a lot of variety in the paraphernalia that supposes preparing a celebration, whether in the floral subject matter, the furniture, the buffet, games...";
fDesc[14] = "paradise. The Sims Castaway Stories offers you two forms to play. In the new and interesting way of directed history , you should achieve certain objectives and In the open-way game mode , you create the Sims and decide how they are going to evolve in their brand new islander home .";
fDesc[15] = "robots. If they touch you, you die. Your only weapon are bombs that you can leave behind. When they explode, they destroy everything in the near: walls, robots... or yourself, so be sure to be far from the explosions.";
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 = '...';
}
}