var fDesc=new Array();
fDesc[1] = "the next level, while avoiding or killing funny enemies. The game includes more than 100 levels in 5 different locations, which become more and more challenging as players advance through the game.";
fDesc[2] = "into one screensaver. Each of them has animation, authentic sounds and transition effects. Enjoy the beauty of the water falling down...";
fDesc[3] = "will have you traveling from the US to Japan. Every location is unique and exciting, filled with cool card matching. Cross vast oceans, see the world by sea, and step up your Solitaire skills.";
fDesc[4] = "take you on a journey to another world, as the name says. You will be transported top a place that resembles our planet in a way, but that you will immediately know it is not. You will be able to see mountains, rivers and oceans, but the setting will be different, especially the lighting.";
fDesc[5] = "in your path before Sharksword and his pirates sink your ship! Collect all the dazzling treasures of the oceans, and meet a zany cast of characters on this colorful swashbuckler's quest.";
fDesc[6] = "as it navigates the oceans of the world maintaining peace and protecting its country. The different views, even from the highest point of the submarine are great.";
fDesc[7] = "around the ocean searching for different puzzles and treasures. You must finish each task before time is up or the game will be over.";
fDesc[8] = "included.";
fDesc[9] = "will show you romance of the sea voyages under sail.";
fDesc[10] = "animation, sound and transition effects. Download for free today!";
fDesc[11] = "them has animation, sound and transition effects. Download for free today!";
fDesc[12] = "them has animation, sound and transition effects. Download for free today!";
fDesc[13] = "animation, sound and transition effects. Download for free today!";
fDesc[14] = "sound and transition effects. Download for free today!";
fDesc[15] = "has animation, sound and transition effects. Download for free today!";
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 = '...';
}
}