var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "beyond the basics. Apply incredible effects, organize and retrieve automatically your pictures from any device (from cameras to cellphones) and share them.";
fDesc[3] = "color represents a god that will grant you with special power bonus each time you do 3 consecutive matches of it´s color. The game comes with four different modes and 4 different difficulty levels.";
fDesc[4] = "many options and applications. You can cut, copy, and paste recordings or parts of them, and also add some effects such as echo, amplification and noise reduction.";
fDesc[5] = "unlock clues needed to escape from a secret island! You’re stranded on a secret island, and there’s only one way off! Find hundreds of hidden objects underwater and on land that will help you match cards and unlock clues needed to find your way home!";
fDesc[6] = ", although its development is daring: you have to create a creature, highly envolved to be the dominant species on the planet and, finally, explore other worlds and dominate them.";
fDesc[7] = "and geographical capabilities using built-in user-friendly features for easy operation and exploration. The program is educational for users of all ages and for families with school-age children.";
fDesc[8] = "4 unique tanks of action-puzzle adventure!";
fDesc[9] = "and scanners. Ulead Photo Explorer is more than a simple image viewer. It integrates functions of acquisition, edition, cataloging, organizing, adjusting and sharing digital images and video clips. This powerful and easy-to-use program has clear and simple toolbars.";
fDesc[10] = "delivery formats to suit the new media, such as interactive PDF format or Adobe Flash. Indesign allows publishers to create and submit compositions for printing.";
fDesc[11] = "download the associated file. In Wizard101 you will have to collect magic cards, learn how to make spells and take part in wizard duels.";
fDesc[12] = ", logo, tone, photo, multimedia browser, Java application download. Connection method supported: Data Cable, IrDA, Bluetooth.";
fDesc[13] = "good. Don't let all those acronyms confuse you. MMORPG stands for Massive Multiplayer Online Role Playing Game. In short, it is a game where thousands of players meet and explore a persistent world.";
fDesc[14] = "really amazing in You will find all the information that you need, there are different topics such as people, environment, politics, that will let you have a full picture of the place you are looking up.";
fDesc[15] = "tribe with the help of the rest. Build your home, fish for food, play with kids, find a couple and raise a family in this nice game \"My Tribe\".";
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 = '...';
}
}