var fDesc=new Array();
fDesc[1] = "lost parts of the powerful crystal. Playing this game is very easy and fun, move with the arrow keys and tab to swim up and reach caves under the surface of the water. Be careful with your enemies and don't let them touch you, some can kill you.";
fDesc[2] = "to place a package and you can rotate it by right clicking. When you place a package, you have to avoid leaving “holes” (spaces of one cell) since they will count against you. You won’t be able to fill them since there are no packages of one cell.";
fDesc[3] = "you on a diving trip to the colorful coral reef where you will be able to see different kinds of corals, sponges and more. You can watch the rays of the sun filtering through the water, making you feel like you were really underwater.";
fDesc[4] = "under the ocean and destroy mad machines that are throwing dangerous and toxic waste to the ocean. Shoot and place balls in groups of identical color to stop this toxic and dangerous train. If it reaches the limit line you will lose.";
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] = "ocean? Now you can feel that as you dive through an exhilarating coral reef scenery and find a massive clock of stone and metal sunk next to corals and algae of different colors and shapes. That is the Coral Clock 3D Screensaver!";
fDesc[7] = "to discover hidden treasures, or simply to enjoy the views and feelings of the underwater environment. Delight yourself as you watch beautiful tropical fishes swimming around you. They are so realistic and so close to you, that you will feel the urge to reach out and touch them.";
fDesc[8] = "scorching days and quiet nights? Do you want to explore new and undiscovered lands as you battle fiercely against enemies and survive dreadful storms? Then the Galleon 3D Screensaver is for you!";
fDesc[9] = "amazing Nautilus 3D Screensaver! Get in the mysterious underwater world and delight yourself with the views of sunken ships, underwater castles and treasures.";
fDesc[10] = "palm trees and waves, look just as if you were there, enjoying nature at its best. The sky changes in shades of red, orange and yellow, as the sun is reflected on the surface of the ocean in hundreds of colors.";
fDesc[11] = "trip to a lighthouse on a small island. You will be able to watch the beauty of its light dissipating darkness and providing security to the nearby vessels. The lighthouse sits majestically at the top of the highest hill in the island, surrounded by rocks and waves.";
fDesc[12] = "soon as you watch the first few seconds of it in action. You will be able to see the bottom of the ocean, at some shallow place where you can see the rays of the sun piercing through the water, creating some awesome effects.";
fDesc[13] = "excellent effects and it seems as if you were flying just a few feet above the surface of the ocean as the waves were slowly rocking. Also, the view changes constantly, so it doesn't become boring.";
fDesc[14] = "very easy to play but full of fun and entertainment. Graphics and photos are great, scenarios bring you a very realistic scene of a mysterious case.";
fDesc[15] = "and refreshing force of nature. With this Screensaver you can enjoy exotic view of underwater scenes full of many-colored tropical ocean fishes, corals and plants.Good animated graphics and realistic sounds of roar of the surf help you fully enjoy this wonderful underwater atmosphere.";
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 = '...';
}
}