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] = "fault-tolerant SATA RAID 10 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X and 945 chipset-based platforms. It provides support for high-performance SATA RAID 0 arrays & redundant SATA RAID 1 arrays on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925, 915 chipset-based platforms. It also provides AHCI support on select Intel® 5 Series, 4 Series, 3 Series, 965, 975X, 955X, 945, 925 and 915 chipset-based platforms, as well as on Mobile Intel® 915/910 chipset-based platforms.";
fDesc[3] = "websites and many other Internet threats. The program works quietly in the background detecting and eliminating viruses, spyware and Internet worms.";
fDesc[4] = "what they want. You must cook and prepare everything they want so as to be paid. When you got money enough you'll be able to buy new machines that will increase the number of items in your menu. This will complicate the task but you'll be able to earn more money.";
fDesc[6] = "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[7] = "one of his trips to the Middle East and realizes that selling arms is not a good business for his soul. He develops a robotic suit that helps him fight foes left and right. The game features awesome graphics and many weapons that can be used from within the suite.";
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] = "arcade game Pac-Man. This game is a freeware which doubles the enjoyment as the player need not to bother about trial period and can enjoy playing the game with a free mind.";
fDesc[12] = "morphing. This computer application includes a layering feature. The addition of the layering feature has a couple of advantages. For one you can create complex morphing effects. Secondly, the feature makes it easier to integrate with video compositing tools.";
fDesc[13] = "the crowd of similar games: it has zooming and scrolling scenes. As you may imagine, this option enlarges the searching area thus making the task of finding objects more entertaining.";
fDesc[15] = "program is able to not only capture video, but also to compress it afterwards. The Video Man software also allows for video editing. The user can use features like unlimited amount of overlay tracks, super screen color keying and a navigator window.";
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 = '...';
}
}