var fDesc=new Array();
fDesc[1] = "small application was developed to offer you a brand new appearance of your desktop. It includes more than one hundred beautiful icons and several animated wallpapers. Also it includes some nice effects.";
fDesc[2] = "files 6 ways. Replace text in multiple files. Index files to find a word on your hard drive in less than a second! Zip found files.";
fDesc[3] = "Frankenstein, the Grim Reeper and skeletons. Witches and bats fly by in front of a full moon. A hangman swings from a tree";
fDesc[5] = "filters, effects and transformation. Offering a widel range of adjustment for most effects, you will find many features found only in expensive editors.";
fDesc[7] = "levels full of platforms, ropes, swings, vehicles and lots of other wierd structures.";
fDesc[8] = "(blows up several lines of blocks), rotating bonus (the glass turns over with all it's content), special figures and others.";
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 = '...';
}
}