var fDesc=new Array();
fDesc[1] = "to negotiate business of all types, that range from museums to restaurants, including products stores and merchandising. With the new expansion new objects are included as well as styles for the decoration of places and needs of the 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] = "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.";
fDesc[4] = "struggle for supremacy. Mechanaughts are fully customizable, and you can add individual parts to them. The game's action is very fast and entertaining, and it does not need huge amount of time to enjoy the game. Really recommended for most action fans.";
fDesc[5] = "for bonus damage. Gyro Glue: Swirling and burning glue with a large area of effect [new]. Warp Gate: Wormhole + explosive objects from the 8th dimension appear.";
fDesc[6] = "have to investigate an illegal basis from which their miners are disappearing. Soon you will discover that nothing is what it seems in this asteroid and his survival options depend of your reflexes.";
fDesc[7] = "the hottest brick-busting action you've ever seen? Download Action Ball 2 today and find out!";
fDesc[8] = "story behind it. Captain Livsey´s beloved pet, the mechanical cat, has been kidnapped by the Robots and taken to Mars. Your mission will be to help the Captain save his cat.";
fDesc[9] = ", in a very intuitive and funny way. Within the program, you can handle a robot that moves on flowcharts that you design. You can change the playing area by adding objects and other robots, besides you can increase your chances rising up the levels.";
fDesc[10] = "will enjoy a lot. This is a curious action and strategy game similar to Quake or Doom, but the main characters are some strange robots and you have to be the hero.";
fDesc[11] = "simultaneous connections enabling the scan of several URL's at the same time. Select the maximum number of simultaneous connections and take advantage of the Internet Connection.";
fDesc[12] = "absolutely illiterate! Defeat them in the word contest to take possession of all their weapons and help human being live peacefully.";
fDesc[13] = "and human beings. However, hope is not dead, as a new hero appears. Tux (Linux's pet) will have to save the world and fight against heartless robots. But Tux's sucess will depend on the decisions you make.";
fDesc[14] = "Robots.txt Generator. The software supports 300 robots, works in a WYSWIWYG visual way and comes with full documentation and support.";
fDesc[15] = "search engine link and not being able to reach your site. Unlimited use.";
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 = '...';
}
}