var fDesc=new Array();
fDesc[1] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[2] = "eleven new languages available. In fact, we can change the program language on the go, from the user's interface itself. This program runs under the following operating systems: Windows Vista, XP, 2003, 2000, NT, ME, 98, and 95.";
fDesc[3] = "get to bet how well you can do at the beginning of each round. A window appears asking you to choose one of the three options The thing is that if you miss your bet the game is over, so try no to shoot too high.";
fDesc[4] = "online gaming portal PlayNC. With a few clicks, you can search for games, download and install them to play right away. Its user interface is very handy and comfortable.";
fDesc[5] = "profesional-looking documents from geetings cards, booklets to posters, banners and much more… With its table tool you can design stylish, high-impact tables and position them precisely in your documents. It´s very simple to present data and information.";
fDesc[6] = "because it has features that can greatly ease your work. ShellLess Explorer has a nice, intuitive and tabbed multi-panel Interface. The navigation bar is similar to Windows Vista and you will have a total control where you can go to any location on your HDD.";
fDesc[7] = "Realms. In this game, we will take control of a Cherokee called Domasi Tawodi to fight a number of alien races. The game will include innovative styles of gameplay and some new elements as \"Wall Walking\".";
fDesc[8] = "correct the grammar, spelling, and style mistakes we may have made while writing English. It offers grammar explanations and synonyms, as well as dictionary, idioms, thesaurus, translation, etc. WhiteSmoke has several versions to suit our needs.";
fDesc[9] = "increase your computer usage speed. You can also protect folders from being deleted by mistake and even add a custom hint !";
fDesc[10] = "Home, Ultimate, Business, etc. The more basic versions lack some features present in the most expensive versions. The one we need to mention here is access to the system restore points (backups).";
fDesc[11] = "The one thing you have to do is to take a deep look to the pictures and spot the differences between them. As its name indicates, in each level you have to spot the 5 differences that there are.";
fDesc[12] = "The game has such features as hints, mistake spotting and it automatically saves the game for you whenever you exit and loads it when you start";
fDesc[14] = "program that was developed to be of help in such cases. It allows recovering files that were removed from NTFS file system.";
fDesc[15] = "and useless dump can appear in it with the lapse of time. MSErrors ErrorFixer is a small application for finding and fixing such mistakes in your registry.";
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 = '...';
}
}