var fDesc=new Array();
fDesc[1] = "enjoy all the pleasure given by a fireplace in your living room. I know there are several screen savers with fireplaces available in the Internet. But this one is probably the best I have seen.";
fDesc[2] = "station Aegis is all but lost. As last remaining pilot you must defend the station against the evil Archnid race.";
fDesc[3] = "appearing in the New Testament. This book has been considered as a classic during more than a century, and now you can download and use it for free.";
fDesc[4] = "game features additional twists on the original concept such as a high scoring system and bonus rounds.";
fDesc[5] = "in Listening mode. Configuration is downloaded from an XML file to connect from behind firewalls. An easy VNC Manager for end users.";
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 = '...';
}
}