var fDesc=new Array();
fDesc[1] = "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[2] = "Autobot Campaign and the Decepticon Campaign. The Autobot campaign consists in defending Earth from the evil Decepticons; on the other hand, The Decepticon Campaign consist in annihilating the Autobots and gaining control on Earth.";
fDesc[3] = "make the cold winter stay forever. Your task will be to find the pieces of the broken mirror, put them together and beat the Snow Queen.";
fDesc[4] = "one of his trips to the Middle East and realizes that selling arms is not a good business for his soul. He develops a robotic suit that helps him fight foes left and right. The game features awesome graphics and many weapons that can be used from within the suite.";
fDesc[5] = "like opacity, color, starting points, light angle, and so on. This evaluation version can be used up to 30 times, after which you mut purchase a license.";
fDesc[6] = "caring for chickens, pigs, cows, and other animals. Visit five separate farms and sell over 25 distinct products. Work through rough seasons like intense summer heat and a cold winter freeze.";
fDesc[7] = "to remove all colored blocks in 30 levels. Drop bombs and outwit enemies to reach places that seem unreachable.";
fDesc[8] = "enjoying the rain in summer with his hands stretched upwards, a rainbow displaying all colors of life and a clock which keeps you always alert and shows you correct time. The clock has roman numerals with decorated hands.";
fDesc[9] = "The screensaver spreads a warm and relaxing effect with its animated images of the most beautiful living creatures you find on a sunny day in a nearby meadow.";
fDesc[10] = "was used while creating this product is very impressive. You will regret if you miss this screensaver!";
fDesc[11] = "screensaver design is beautiful, with delicate colors, detailed drawings, and a subtle animation that slowly fills the screen.";
fDesc[12] = "similar to the real ones, flying around your screen and slowly turning on and off a trail of smoke to write the letters of your message. Now when you wish a happy birthday or want to say \"I Love You\" to that special person, you will do it with style.";
fDesc[13] = "forest life that will make you forget about all your problems! Enter the quiet world of the forest!";
fDesc[14] = "offers you a piece of paradise with white-sand beach, palms and yachts with snow-white sails which sails in the distance. Good animated graphics and realistic sounds of roar of the surf and seagulls’ shouts help you feel peaceful and relaxing atmosphere.";
fDesc[15] = "flowers blossom on your screen. Take pleasure in beauty of a smart summer bouquet. Feel aroma of summer!";
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 = '...';
}
}