var fDesc=new Array();
fDesc[1] = "intuitive and very simple graphical user interface with multi-tab support, thumbnails of visited websites, enhanced autocomplete feature, password manager, and many other features. You can import all your settings from your old web browser such as Internet Explorer and Firefox.";
fDesc[2] = "optimizes system registry and other system files so that Windows can run fast and smoothly. The program creates a system restore point, in case something goes wrong during the clean-up.";
fDesc[3] = "The present limit is 20 folders with 20,000 files each and no more than 4 GB in total. Very useful to avoid the hassle of transporting files in a USB drive.";
fDesc[4] = "its spectacular visual finish, which was built on the basis of the Essence engine. This game engine enables us to appreciate the battle from every angle imaginable with an amazing quality.";
fDesc[5] = ", 7-Zip… The jZip – developed by Discordia Ltd. – is one more option to take into account and deserves our attention due to its effectiveness, ease of use and freeware license. This tool is based on the well known 7-zip archiving technology developed by Igor Pavlov.";
fDesc[6] = "hidden object game does not mean that you have played them all, however, this is one of those cases where from the very beginning you can realize that not all the necessary attention has been paid through the development process in order to achieve a truly original and unseen product.";
fDesc[7] = ", the owner of the house in which you’re staying at. Thirteen levels will lead you to the truth, gather clues on each investigation. Try this game for 60 minutes.";
fDesc[8] = "published by UbiSoft. In video games, as in many other fields, change is essential to evolve. Surely this is what the Blue Byte staff thought when they decided to work with The Settlers: Rise Of An Empire.";
fDesc[9] = "cleaning tables, serving customers potatoes, nachos, beers, milkshakes and much more. Pay attention to their hearts which represents their patience, since you don´t want to loose them or you will be loosing money as well.";
fDesc[10] = "place in the Wild West. This second part will cover many different scenarios throughout the 14 stages of the game, driving up to a total of 6 different characters with various skills each. You are going to live John Cooper´s adventures as well.";
fDesc[11] = "order to help you. Solve all the puzzles that will be presented to you at the different stages of each temple. Enjoy hours of fun solving puzzles in this great game.";
fDesc[12] = "in this incredible and mega airport. What an opportunity to discover the original feeling and atmosphere of this airport! Simwings utilized the BAA as having them onboard as an official partner for this project.";
fDesc[13] = "to destroy them, but pay attention to the board as well, because the jewels you should be breaking are the ones that stand over dark spaces of it. Once the dark spaces in the board are gone, you will go to the next level.";
fDesc[15] = "really catch your attention. You will be able to see the typical hypnodiscs that are used many times to help you in focusing your attention and enter the trance world where your inner thoughts will be revealed.";
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 = '...';
}
}