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] = "if necessary. It also shows you some important data about your hardware. SpeedFan 4.33 gets info from digital temperature sensors and internal chips of some components.";
fDesc[3] = "computers, and allows maintaining maximum productivity and saving maximum of electric power. This utility adds the possibility to switch off some components for power saving in that way.";
fDesc[4] = "if any problem with these components is found. It is a must have utility for any who want his computer to be in a healthy state everytime.";
fDesc[5] = ", XPx64,Vista(32-bit) and Vista x64 based system. With NVIDIA nTune installed we can monitor, access and adjust our system. New features in this versión: it can control the fan of another computer and it supports new nForce chipset.";
fDesc[6] = "different colors with numbers on them. You will also have a card with numbers and colors. Every time you see that the number is both in the line and on your card you will have to click on it so that it disappears and you get points.";
fDesc[7] = "kitchen and bathroom appliances and items. In all, over 103 items are included in the pack, along with a new house and a romantic loft. The pack is aimed at the dedicated Sims fans.";
fDesc[8] = "from your PC, playing against other skilled players around the world. That's exactly what Carom 3D let's you to do. You can play pool with a total control of your movements, and a great 3D perspective, so you will be able to rotate, zoom and move the camera as you desire.";
fDesc[9] = "first stand-alone expansion pack launched for the fifth installment of the game. This expansion should not be missed by any fan of this amazing strategy saga.";
fDesc[10] = "rallying game. The Xtreme version also brings road going cars and some other off road vehicles. With over 40 tracks available, the repetitive value of the game is huge. This is a great addition to any racing fan collection.";
fDesc[11] = "charts. With the help of this software the user can easily modify the looks of the charts as per requirement, by selecting any desired color theme, content, pictures, box borders, number of generations and lots more.";
fDesc[12] = "motherboard, CPU, hard discs, etc.) voltages and fan speeds. It provides a lot of info regarding your hardware components with graphics that show the current temperatures, fans and voltages";
fDesc[13] = "and the expansion have a main storyline that the player follows and keeps him entertained. With good combat system, graphics and storyline this game is a must for Tolkien fans.";
fDesc[14] = "that use the 52 card International Pattern deck, games for the 78 card Tarock deck, eight and ten suit Ganjifa games, Hanafuda games, Matrix games, Mahjongg games, and games for an original hexadecimal-based deck.";
fDesc[15] = "puzzle game with three modes: Action, Adventure and Bonus Game. Solve the puzzles and learn all about the animals that live on the island, and collect lots of trophies.";
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 = '...';
}
}