var fDesc=new Array();
fDesc[1] = "realism! Theses fish are actual 3D Models, not flat images dragged accross the screen.";
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] = "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] = "different reef tanks, with great backgrounds and a large variety of fish and corals. SimAQUARIUM can be customized and has great options.";
fDesc[5] = "submerging to the coral reef below. With each meter that slips by, it becomes quieter and more peaceful around you. The mysterious kingdom of the sea uncovers all its beauty, only to you. Nothing troubles you now. Soft light filters through the water, tinting it with the various shades of blue and green. Fantastic corals are wondrously shaped and colored. It's almost like you are on another planet. Algae are gently swaying with the current. Peaceful, easy feelings fill your body. Air bubbles slowly rise to the water surface. Tropical fish inhabit the coral reef. They appear in every imaginable color, with fantastic shapes. They are swimming everywhere. Some are far from you, others very close. Fish movements are so realistic that it makes you think you are observing real living sea creatures. They swim and drift. Corals and plants bend and sway in the tide, all realistically reflecting...";
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] = "logos on a cut piece of translucent crystal nestled in the coral. This aesthetically beautiful version can promote your company, reward your employees and will be the most creative corporate gift ever.";
fDesc[9] = "Aquarium\". Aquarium made with the application of 3D technologies is a beautiful animated underwater landscape, inhabi";
fDesc[10] = "underwater adventure of discovery. You will be able to see beautiful coral heads and sponges, as well as a vertical reef deep in the ocean. Or even an underwater arch made of coral, where different kinds of fish will swim by.";
fDesc[11] = "you on a trip to the clear and warm underwater world of the coral reef. Watch every form of coral possible, as well as all kinds of tropical fish. The graphics are so realistic and detailed that you can almost feel the texture of the sponges.";
fDesc[12] = "types of salt water fish elegantly make their way through the fascinating world of the coral reefs.";
fDesc[13] = "Imagine a secluded island in the middle of the Caribbean Sea. Nobody inhabits it except you. You have all the commodities that you need. Now it's the time to go to the beach to enjoy the view.";
fDesc[14] = "few divers in the background.";
fDesc[15] = "a traditional poker machine. Coral Cash is easy to install and when the program is launched, it’s bright interface presents you with the graphics of a traditional slot machine";
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 = '...';
}
}