var fDesc=new Array();
fDesc[1] = "zombies, which want to destroy your vision of happy future. It's real good continuation of Fallout 1/2. New adventure in the habitual environment and modern good-looking form.";
fDesc[2] = "addictive and easy to play, Puzzle Inlay offers over 60 picture puzzles to inlay with more than 18 varieties of gems. The purpose of the game is easy yet challenging.";
fDesc[3] = "in order to create matches of at least three, but be sure you free other gems meanwhile. All the gems will advance each two shots, so you have to be fast and accurate.";
fDesc[6] = "including some DVD, Iphone and Ipod formats. As the name says, you can also convert any video to audio, that is extract audio from a video file.";
fDesc[8] = "birds from the same color than a group of birds walking on a wire. If you hit a group with the same color, all the birds in the group will disappear from the wire. Your goal is to wipe out every bird before they reach the end of the wire. Should they arrive there, you will lose a life.";
fDesc[9] = "Make combos and you will have gems raining down.";
fDesc[10] = "captured by the Dream Reaper and the lifeless mummies Gather crystals on each dimensional level while avoiding danger. Lily will escape if you can collect enough crystals.";
fDesc[11] = "Dug, but it has different game dynamics. You must solve the level puzzles in order to get the stones. This is a great puzzle game and it will be a good addition to your collection if you are willing to pay the price for it.";
fDesc[14] = "like your child to play developing and interesting games we advise you to try BrixFormer.";
fDesc[15] = "Comprehensive support for compression, sub-formats, color depths, naming templates, and resizing/rotating in the same operation are available.";
fDesc[16] = "and it works just like an Astrology Encyclopedia, including all the facilities of Dasa Bhukthi analysis for all the divisional charts, which makes it very handy and useful for researchers, novices and astrology experts.";
fDesc[17] = "You can remove groups by clicking on them of stones with the same picture, but not on isolated stones.";
fDesc[18] = "Past’s state-of-the-art conversion technology. No blips, no flashes. The audio too is remarkably crystal clear with zero level of white noise. There’re a whole lot of matchless features in this one of a kind screen video recorder.";
fDesc[19] = "adventure. Version 1.2 features a few new sound effects and a couple of bug fixes. Bouldermouse is a variant of much-cloned gem hunting game Boulderdash. In this outing there are 3D rendered graphics and a spoken introduction sequence, but the main game is much the same.";
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 = '...';
}
}