var fDesc=new Array();
fDesc[1] = "formats (Direct CD, InCD, DLA, and Instant-Write) and is capable of performing surface scans, accessing data that Windows simply cannot read.";
fDesc[2] = "Bin, etc. from every drive in the system. The user interface is nice and the program has several (10) languages to choose at the begining of the operation.";
fDesc[3] = "deleted data in cases of hardware failure, operating system crashes, errors on deleting files, viruses or malicious attacks. It makes virtual RAIDS, recover data off a CD or DVD, recover encrypted files, compressed files and alternative data streams.";
fDesc[4] = "predecessor that makes it a much better game. With 160 levels to play in nice environments, Lost World should be a good choice for arcade gamers.";
fDesc[5] = "expansion for Fable which presents all the content found in the original with the addition of such new features as monsters, weapons, alignment based spells, items, armour, towns, buildings, etc..";
fDesc[6] = "for RAR/WinRAR (2.xx and 3.xx) archives. This incredible program includes the following modes to recover the passwords: \"brute-force\" attack, dictionary-based attack and dramatically fastest \"Booost-Up\" attack.";
fDesc[7] = "of the pocket watch made by Abraham-Louis Breguet, who has been called the greatest genius of watch making in history. You will feel the urge to reach in the water and grab it yourself to solve the mystery of the never-stopping watch!";
fDesc[8] = "Very original backgrounds. You'll find that the difficulty increases level after level till you'll think they are impossible to finish but even then you won't be able to leave the game for a long while!";
fDesc[9] = "The figures vary in type, so you must find out the longest chain for the highest score possible. The game also features a nice background story that makes it a little bit more professional. This is a solid puzzle game that is refreshing and easy to play.";
fDesc[10] = "the settings and different alternatives for fun are excellent, you will never get bored. Choose your track and car for a single race or a championship and try to break all the speed records.";
fDesc[11] = "seeker who travels around the world, searching for lost treasures. In this game, you have to locate the Lost Tomb of Egypt, by finding and picking objects from different scenes. You can try this game for 60 minutes before buying.";
fDesc[12] = "07/30/2002, as can be read in the author´s page. He´s not offering it anymore in his web site. Drive Rescue can be run in 20 different languages. You don´t need to install it, it can be run even from a floppy disk or USB drive.";
fDesc[13] = "great nonetheless. In the game, you play a new character, who apparently was on the same flight as the survivors, but he can't remember anything prior to the crash. Jack asserts that he has amnesia brought on by the shock of the crash.";
fDesc[14] = "just the same title a year ago, but with a series of expansions and is shipped at a reduced price, so it's a good opportunity for those who are lost in time.";
fDesc[15] = "explore with the help of maps and teach the children how to perform different tasks while you buy different technologies in order to help them.";
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 = '...';
}
}