var fDesc=new Array();
fDesc[1] = "source codecs like Ogg vorbis. With the built-in utilities like library manager, music ripping and burning to CDs and its great playback quality, it is indeed a great music player to have.";
fDesc[2] = "photos with friends and family is as easy as pressing a button!";
fDesc[3] = "coordinates, so you can watch the sky on the screen as if you were using a telescope in real life. You can make the illusion more realistic adding atmosphere effects and views including the ground.";
fDesc[4] = "improvement of the game predecessor Star Wars: Battlefront. This game adds all the new elements of the last film of the saga, Episode III";
fDesc[5] = "universe of Star Wars movies. The game tells the story from the times when the Galactic Republic falls to the destruction of the Death Star (Episode III and Episode IV).";
fDesc[6] = "arcade shooter game pits you against the aliens in a ferocious battle to the death. Pilot your ship through 5 enormous galaxies and 50 futuristic, 3-D levels to find all the pieces of the secret weapon. You can play in three different levels: Cadet, Pilot or Ace.";
fDesc[7] = "Traveller's Tales and Amaze Entertainment and published by Lucas Arts and TT Games. It is based on Episode IV, V and VI of the Star Wars film saga";
fDesc[8] = "drive, this is your game. In this game you must drive a car in a very special space, you can see how your car explodes when you go out of the road.";
fDesc[9] = "more, you do not even have to register at all. You will be able to find it in the site GameTop.com.This is an action game, you will command a tank in the space and you must protect your planet from the enemies.";
fDesc[10] = "side of the force, being a droid, clone or rebel. Battlefront transports us to different battlefields of the saga of George Lucas film scenarios. The graphics are great and the voices of the characters are realistic.You can also play in multiplayer mode.";
fDesc[11] = "introduced the corrupts, better known as the Zann Consortium, a faction leaded by a strange, dark and twisted character named Tyber Zann.";
fDesc[12] = "battle adventure. Each level will speed up your challenge and will put some adrenaline to your fun. You will love this shooting battle and the challenge of beating your score record.";
fDesc[13] = "play the role of a Jedi Knight who is challenged with leading a group of freedom fighters across the galaxy and whose actions will influence the outcome of a simulated galactic war.";
fDesc[14] = "replays as .AVI files. You can play using your keyboard or joystick. The program has a database of 40 soccer leagues worldwide. You can play with any team from any country.";
fDesc[15] = "ship or ships into combat. The plot is a well-known one for Star Trek fans: the Borg, a race of cybernetic humanoids, is trying to form an alliance with a rogue Vulcan.";
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 = '...';
}
}