var fDesc=new Array();
fDesc[1] = "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[2] = "many cities and information about their population and country names. The position of the cities shown corresponds to the real coordinates. You are able to add your favorite cities to the map, as well as eliminate the included cities and leave only the added ones.";
fDesc[3] = "gallery of screensaver sets and more than 3,000 images or create your personal screensaver using your own photos! Set slide";
fDesc[4] = "There are two modes to visit your photo galleries: the Freemove Mode, where you can wander freely inside the virtual space and the Automatic Mode, in which the computer will guide you through the gallery.";
fDesc[5] = ", without wanting the hassle of caring for them. This gorgeous desktop garden offers digital aquarium. The set-up is not complicated - just install and watch them swim.";
fDesc[6] = "screensaver will take on a trip to the bottom of the ocean. You will be able to watch many different kinds of sea creatures. Fish, octopus, crabs, manta rays and even a mermaid or two.";
fDesc[7] = "Matrix adepts out there. Do you like the green lines of code? That’s exactly what you are going to get. But the only difference that I found with other similar products, is that in some moments, the green lines begin to move randomly, making curves, rays and more different effects.";
fDesc[8] = "roller coaster photos from around the globe. Sit upright, hold on tight and enjoy the ride!";
fDesc[9] = "titles, icons, speed and progress messages. It can also disable your screensaver.";
fDesc[10] = "mythological creatures. Beautiful pictures with trees, lakes and mountains will decorate your screen, as well as flying dragons that look almost real. Bright colors and amazing pictures.";
fDesc[11] = "trip to a mysterious place where a haunted mansion rests. Witches, skeletons, bats, ghosts. You name it. You will be able to see Jack O' Lanterns dancing at the entrance of the house, grinning and laughing as they move around.";
fDesc[12] = "some of the classic Halloween characters. You will see witches flying and mixing their magic brews, skeletons of many kinds, bats flying around you and lots more.";
fDesc[13] = "probably haven't seen before. A digital clock will be moving randomly across your screen, imitating drunken movements. The numbers will even shrink and bend as they move randomly around the screen.";
fDesc[14] = ", where you will share the slopes with many other skiers having fun. Another nice touch is the effect of the clouds. They will be moving across the screen, indicating the passing of time.";
fDesc[15] = "fun, to the world of MyPlayCity.com!";
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 = '...';
}
}