var fDesc=new Array();
fDesc[1] = "level, gathering gold and staying away from monsters. The player can dig holes to trap monsters. Collect all gold to win!";
fDesc[2] = "different directions so that you can get groups of three or more and destroy them before they reach their goal. The game is very easy to use, all you need to control the cannonballs is your mouse.";
fDesc[3] = "Hunt down dangerous fugitives with the latest in combat equipment and defend your hard earned profits.";
fDesc[4] = "inside inside of carrier files, such as image files, video, program or sound files. Use Masker to keep you sensitive secret files secure hidden.";
fDesc[6] = "destruction. Take control of a ship armed to the teeth and ready for war. Soak up jaw-dropping visuals and ear-shattering audio.";
fDesc[7] = "Some of the tools in RegVac are not available anywhere else.";
fDesc[8] = "friends in 30 levels filled with dangerous dinosaurs and more than a hundred goals to complete. For casual and hardcore players.";
fDesc[9] = "protection, built-in web browser with bulk media downloads, virtual albums, slideshows, and more.";
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 = '...';
}
}