var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "users to share their processing power with the SETI@HOME initiative. It used volunteers' computers to analyze recordings of radio transmissions from outer space. However, nowadays, several projects can be added to the client.";
fDesc[4] = "scorching days and quiet nights? Do you want to explore new and undiscovered lands as you battle fiercely against enemies and survive dreadful storms? Then the Galleon 3D Screensaver is for you!";
fDesc[5] = "forecast, radar, maps and more! Comes with a FREE customizable Crawler Toolbar that has terrific plugins.";
fDesc[6] = "opportunity you will fight in Africa. Plot: Panzer Elite Action returns to the load with an expansion that focuses on African campaign of World War II. Forget the immense forests of central Europe and confront a much warmer scenario.";
fDesc[7] = "take you out to the Scottish lands to witness the arrival of an electric storm. You will be standing on a green field next to the shore. There is an ancient castle tower standing still against the elements of nature. You immediately get the feeling of power.";
fDesc[8] = "weather forecasts, explore foreign countries, zoom and rotate the globe. Watch planet Earth the way only astronauts do!";
fDesc[9] = "& predictor tool, plus personal scan zone and a distance measuring tool. Email, pager/cell phone alert";
fDesc[10] = "backgrounds as they are lit up by the dance of lighting in the skies. The mood is completed with comforting, yet haunting background music";
fDesc[11] = "connect to the Internet and download the latest information regarding hurricanes, tropical storms and tropical depressions. This way you will be able to follow its trajectory so you can just forget about it or start getting prepared for its arrival to your city.";
fDesc[12] = "brightness of your monitor and test the quality of a monitor (moire, blue and yellow regions, storms).";
fDesc[13] = "forward: a hero of power, of stature, of pure meteoric strength";
fDesc[15] = "awesome storms on planet Mars. Mars has the largest dust storms in the Solar System.";
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 = '...';
}
}