var fDesc=new Array();
fDesc[1] = "that is set in a teamplay, you can choose to be a terrorist or a counter-terrorist. Warning: this great game is very addictive! You’ll download it in a few minutes and you’ll be playing it in less!";
fDesc[2] = "Huntington's shop owners find more than 1,200 unique and cleverly hidden items for their customers and earn enough cash to open a shop of your own. This \"hidden object\" game will bend your brain and dazzle your eyes.";
fDesc[3] = "user can chose between dozens of professionally-designe d templates and models. It is also possible to create photo calendars, photo albums, books and much more.";
fDesc[4] = ", Pirateville Deluxe, now. The handsome pirate Jack \"the Sharpshooter\" recieves an ancient casket from an old friend. He is not a very patient man and his curiosity brings about unbelievable adventures in which magic, love, gold, weapons and a cursed ghost play a big part.";
fDesc[5] = "Link letters to find words hidden in the grid and glorious treasures will dazzle your eyes. Find long words and unleash electrifying power-ups to aid your quest. A word challenge of epic proportions, Acropolis is legendary fun for the entire family";
fDesc[7] = "right shade, by letting you pick out of 16-million-colors and generating the #RRGGBB code for it. A browser-safe palette is also available. Additional features include gradients, body tag construction, load/save colors, always on top etc.";
fDesc[8] = "words hidden in the grid and glorious treasures will dazzle your eyes. Unleash electrifying power-ups to aid your quest finding long words and . Discover all special tile types on your quest through 50 mindbending levels.";
fDesc[11] = "for Mythic Pearls!";
fDesc[13] = "and click on AddressGrabber. The critical contact details gets extracted and added in chosen destination application instantly.";
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 = '...';
}
}