var fDesc=new Array();
fDesc[1] = "Games. One of the most eagerly awaited strategy and adventure games, Age of Mythology, finally comes out of Ensemble studies, the creators of the classic game, Age of Empires, the most outcoming of this video games genre.";
fDesc[2] = "furnish a flat and calculate the it's cost with the latest IKEA prices. You can share the plan of your dream bedroom by saving the project to the disk and send it by email to your friend.";
fDesc[3] = "coordinates, so you can watch the sky on the screen as if you were using a telescope in real life. You can make the illusion more realistic adding atmosphere effects and views including the ground.";
fDesc[4] = "reach the enlightenment. Its ease of play and relaxed atmosphere, plus its beautiful graphics make it a very enjoyable game.";
fDesc[5] = "transforms it in a window to the universe. We can use it as Wallpaper or as a Screen Saver, if you use anyone of both you can choose to refresh the view every certain amount of minutes, in the map area can download more maps and apply the zoom.";
fDesc[6] = "The game offers a lot of nice tracks and all the teams, and it provides some really exciting racing. However the game has seen better days and all its features have been surpassed by the newer simulator games.";
fDesc[7] = "a way that you will almost be able to smell the fireplace. You will be able to hear the crackling sounds of the wood burning, and see the blinking light and shadows formed by the flames. Spirit of Fire 3D Screensaver will definitely warm up the hearts of even most serious people.";
fDesc[8] = "in charge of disposing millions of aliens in this game. With fast-paced action and a good atmosphere, the game will appeal to many gamers, specially those who like action games.";
fDesc[9] = "Ozzy starts the journey with an innocent game of catch, as Ozzy accidentally smacks into a slab of ice, cracking it and letting a mysterious creature go free. Intrigued, he follows, unknowingly setting off on the adventure of a lifetime, filled with excitement and wonder.";
fDesc[10] = "day. All you have to do is start this program and select a sound theme. The program includes ten sound themes. You can add random sounds like thunder roll or croaking of frogs into any sound theme.";
fDesc[11] = "sounds. Those sounds are the mainly the sounds that one would consider white noise. They are often used for relaxation and meditation. The sounds range from several types of rains to wildlife in India.";
fDesc[12] = "with a few cottages covered with snow, with smoke coming out of chimneys and slowly rising as there is no wind to disturb anything in this quiet winter paradise.Relaxing music and high quality 3D graphics will help you relax and instantly calm your mind.";
fDesc[13] = ", Poker, Craps, Slots, Roulette atc.. to play for FREE / REAL money! with 400% Match Bonus! and up to $65 Free chip!";
fDesc[14] = "sheer happiness carrying you away to the seventh heaven. Put it on your screen and enjoy the pure perfection. If you are in love and are looking for a way to express your feelings to your sweetheart, then this romantic screen saver is just what you need.";
fDesc[15] = "an astronaut, flying around the planet. The details of the planet looks fantastic, great colors and a blurry veil of atmosphere. The coasts and mountains looks rugged and you have a splendid panoramic view of the plains.";
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 = '...';
}
}