var fDesc=new Array();
fDesc[1] = "improvements that make the game even more addictive. Players have the option of choosing to play the single player campaigns, multiplayer, or random maps.";
fDesc[2] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[3] = "keep advancing from level to level. You will play at different stages, each stage is a different country. The game has got a nice storyline. You will be able to read the story from a book that will let you know what has happened and what will happen with the characters of the game.";
fDesc[4] = "trade exotic island goods, amassing wealth and power. Earn enough gold to upgrade your ship and engage in land and sea battles.";
fDesc[5] = "will fire balls to lines of balls that will roll over reels towards a sea gate. If a fired ball hits a group of two or more balls of the same color, the whole group will disappear from the chain, and its place will be occupied by the balls rolling behind them.";
fDesc[6] = "almost feel the gushes of wind! You sway up and down in the waves listening to the thunders and watching the lightings as the sun goes down in the horizon. The FX sound is awesome providing all the fantastic realism of atmospheric effects!";
fDesc[7] = "must hit, it will destroy some things (like bricks, or jelly fishes), and bounce against others towards you. You must avoid the ball to escape from the lower bottom of the screen, and catch the falling jewels and power-ups that will fall sometimes.";
fDesc[8] = "will tell you more about it. Your soul has been taken away from you by the ghost of an old creepy man. Your soulless body can't survive like that, so you have to find it and get it back.";
fDesc[9] = ", this screensaver will show you the view that you will get from the cockpit of an airplane flying over the sea on a sunny day, through a realistic 3D animation that shows the waves, the clouds and the horizon. If you want, you can enable the screensaver to play a relaxing music.";
fDesc[10] = "boat at the sea moving toward to destroy enemies at land and ocean, like tanks, rockets and cutters. Keep fighting, allies will come by air as bombardiers to help.";
fDesc[11] = "in Sea Trapper. Discover underwater caves of extraordinary beauty and unexpected danger.";
fDesc[12] = "of America. Plot: You will be able to create your own character with a good variety of options available, particularly in terms of clothing and accessories.";
fDesc[13] = "engaging but also very challenging. It scores well for its 100% genuine soundtrack, power-ups and extraordinary features.";
fDesc[14] = "This screensaver will show you more than seventy quality photographs of several types of fish and the most fascinating sea creatures.";
fDesc[15] = "swirls on the surface, accompanied by a sunset sky and lightning in the horizon. The graphics are very realistic. You can almost feel the wind on your face. All the atmospheric effects are so well designed that you will really feel in the middle of the storm.";
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 = '...';
}
}