var fDesc=new Array();
fDesc[1] = "is dynamic unlike other download managers. Other features include resume broken downloads due to broken network connections, error recover and site grabber for web-sites. Apart from the regular files that can be downloaded, IDM also supports embedded video files";
fDesc[2] = "creatures and spun a web over their kingdom. You must solve 60 puzzles to break the spell and return the land to sunshine.";
fDesc[3] = "spider man whose mission is to stop Electro from taking over the world. Throughout the game, user swing from building to building, picking up power-ups, beating up thugs and hired goons, and every so often confronting a boss who then proceeds to whip the living tar out of them.";
fDesc[4] = "One Klondike Pyramid, FreeCell, Spider solitaire, Flower Garden, Diplomat , Spider solitaire Two Suits, Eighteens, Forty Thieves, Grandfather's Clock, Royal Rendezvous, Spider, Suit, and others.";
fDesc[5] = "excellent playback quality, with extra tools to manage our music files. With support for more than thirty audio formats, this player offers all the necessary functions to fully enjoy our music without consuming valuable resources from the system.";
fDesc[6] = ", with a user.friendly interface and top quality graphics and animations. 123 Solitaire has a freeware license, however there are some basic actions that are restricted.";
fDesc[7] = "Royal Palace, the last citadel of evil in this magic land. Get ready to complete 82 different levels to bring back former splendor of the castle";
fDesc[8] = "events of the last Spider-man movie, Spider-man 3. In this game, you will be able to roam around the whole New York city and put order as you go. A good thing about this game is that it is up to you as how you want to play. You are given a map which tells you where things are happening.";
fDesc[9] = "view, based on the famous Marvel Comics adventures hero. The story will resume the environment of the three films, but will have a different enemy.";
fDesc[10] = "its predecessor, but, looking closer, you will see a lot of changes. I am personally a fan of the Spider-man games, and I can honestly say that I have played them all. This one is the best so far.";
fDesc[11] = "ideal for people who during a ten-minute break want to relax playing an entertaining game. With simple and nice graphics plus a relaxing gameplay, this collection is really worth trying, and most importantly, it is absolutely free.";
fDesc[12] = "hundreds of addresses from web";
fDesc[13] = "house. This gaming software can be used on all Windows platforms. The installation procedure for the game is easy, just unzip the downloaded file and then run the setup.exe file to install the game.";
fDesc[14] = "Internet in just a few easy steps. This program can browse the Web in an automated manner, indexing pages that contain specific keywords and phrases and exporting the indexed data to a database on your local computer in whatever format you want.";
fDesc[15] = "to solve and arrange a spider web. You must move the spiders to let them free and untangle all of them. To complete each level you must untangle all the spiders in your screen board. Sounds easy, but it is not.";
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 = '...';
}
}