var fDesc=new Array();
fDesc[1] = "case comes up and you are ready to get to the end of it. Your mission is to investigate who is the killer of Miss Linnete Doyle, another passenger of the cruiser. Twelve levels will lead you to the truth, gathering clues on each investigation.";
fDesc[2] = "trade exotic island goods, amassing wealth and power. Earn enough gold to upgrade your ship and engage in land and sea battles.";
fDesc[3] = "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[4] = "ship in space to collect its treasure. Each level of this game will challenge you with new adventures and increasing difficulty.";
fDesc[5] = "regular engineer, being called to repair the communications array of a mining ship in a far-away system. He has also received a weird message from someone within that ship. It all looks like a routine mission.";
fDesc[6] = "you aboard a wooden ship in the middle of a fierce storm at sea. You will feel how the ship rocks and moves with the waves and the wind. In the distance, a threatening funnel cloud moves towards you, surrounded by awesome but dangerous lightnings.";
fDesc[7] = ", lets you choose your preferred video mode. The other one, \"Start\", launches the game. Then, you start battling with your spaceship against the enemy forces. You control your ship using the mouse, your trigger is the left button.";
fDesc[8] = "really feel your self at space. Pick up special bonus like shields and weapons in order to power up your space ship and pay attention to additional bonuses and extra lives.";
fDesc[9] = "fly the latest and faster airship the T-77 in order to fight and collect your objective. The game is simple to use and will guide you step by step during the game thanks to the cursors, radar, and other features that will appear when you need them.";
fDesc[10] = "catch the colored energy balls, but be careful to spin the ring that surrounds your ship so you will have free space to grow your score and for the next ball; if you get 3 balls in order they will disappear and will add you energy.";
fDesc[11] = "front bumper. At the beginning you’ll be shooting an “aquasphere” which will hit something in the current scenario, coming back towards you. You’ll have to place your ship in front of the aquasphere in order to keep it bouncing all over the place.";
fDesc[12] = "robbed the civilian fleet but also battled each other for the stolen loot. A lot of their ships sank in the Caribbean and still remain their. In this screensaver we get an awesome opportunity to dive into the depths and take a closer look at one of these pirate ships. Features: Photo-realistic 3D graphicst View of a real submerged pirate ship Numerous mysterious creatures of the deep sea Enchanting beauty of the underwater world Full 3D environment Relaxing enigmatic music FPS counter True spirit of the glorious history of the pirates of the Caribbean! Password protection.";
fDesc[13] = "forces and destroy all command ships that control the military operations. Download Space Fights and play for free!";
fDesc[14] = "– or several of them – bouncing as long as you can so the ball can destroy an arrangement of bricks and stuff. To do that you have a ship on which the ball bounce when it comes down to the bottom of the screen. You can control your ship by moving your mouse sideways.";
fDesc[15] = "you to sink enemy ships. First, a tap on your ship icon will result in a broadside being fired from both sides of your ship. The enemy can not fire broadsides and the only way for you to be sunk is by colliding with their ship, an island, or a sea monster.";
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 = '...';
}
}