var fDesc=new Array();
fDesc[1] = "4 unique tanks of action-puzzle adventure!";
fDesc[2] = "realism! Theses fish are actual 3D Models, not flat images dragged accross the screen.";
fDesc[3] = "and other sea creatures swimming very slowly above a colorful coral reef. At the same time, enjoy the realistic aquarium sounds including bubbles!";
fDesc[4] = "effects and realistic animations of colored fishes in their tanks. It includes about fifteen different colored fishes, superbly illustrated, and with amazingly realistic animations.";
fDesc[5] = "resembles an aquarium with fish swimming and playing around. Having such a saver is so relaxing. When I stumbled upon Dream Aquarium I was perplexed, but in a good way.";
fDesc[6] = "different reef tanks, with great backgrounds and a large variety of fish and corals. SimAQUARIUM can be customized and has great options.";
fDesc[7] = "fishes you want to see (up to 5 different types), the foreground and background colors, the location, amount, type and sound of the bubbles, if you want a frog or not.";
fDesc[8] = "screen saver with lots of new features will show you the time and date. You will even have the chance to choose and feed your own fishes!";
fDesc[9] = "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[10] = "and problems with this beautiful screensaver. You will be able to see a big 3D aquarium with lots of different colorful fish swimming around gently, while you see the bubbles rising to the top.";
fDesc[11] = "Aquarium\". Aquarium made with the application of 3D technologies is a beautiful animated underwater landscape, inhabi";
fDesc[12] = "your living room or at the office. And, of course, it will give you the time, but in a very special way. All of a sudden, even a shark appears on your screen. It also swims gently along the scene, without messing up with no one.";
fDesc[13] = "and sound, clock, and so on. The unregistered version only works during one minute; if you want the full version, you must purchase a license.";
fDesc[14] = "very beautiful aquarium with colorful fish swimming there while the plants sway gently back and forth and bubbles rise to the surface! This is the 3D Bungalow Aquarium Screensaver!";
fDesc[15] = "lot of really wonderful fish right in front of your favorite couch. You will be able to delight with many different kinds of colored fish in an aquarium.";
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 = '...';
}
}