var fDesc=new Array();
fDesc[1] = "to these amazing places. Travel around the world in order to re-built the 7 wonders; provide workers with construction materials as you destroy blocks of gems in the puzzle games.";
fDesc[2] = "There are two modes to visit your photo galleries: the Freemove Mode, where you can wander freely inside the virtual space and the Automatic Mode, in which the computer will guide you through the gallery.";
fDesc[3] = "This title is inspired by the tabletop war game Warhammer Fantasy Battle. The story follows two different strands, each with its heroes and events, one follows the Empire and Elven Forces and the other the Hordes of Chaos and Skaven forces.";
fDesc[4] = "video formats including AVI, MP4, WMV, DVD, 3GP, iPod, Zune, Xbox, PMP, PSP, Apple TV, Pocket PC, FLV, SWF, MOV.";
fDesc[5] = "The place which you will be able to watch in this animated screensaver is very gloomy and frightful, that is why people never ...";
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 = '...';
}
}