var fDesc=new Array();
fDesc[2] = "Web page also. GIF Animator can handle any type of GIF animation; it provides high compression and great quality.";
fDesc[3] = "yourself a painter using your paint-tube at the bottom of the screen. The idea of the game is to erase all the spots from the screen. The spots are of different colors: blue, yellow, red, violet, green and light blue.";
fDesc[9] = "goal of capturing the flag avoiding shoots from the opposite team with paint balls. Before to play it’s necessary to create a profile and register it on the website. Nice GUI is easy and friendly to user. It runs in Windows and Linux platforms.";
fDesc[10] = "any selection of files or folders. It supports both CD-R and CD-RW formats, and all kind of data DVD discs. This tool can also erase your rewritable discs quickly and efficiently, and is capable of making accurate copies of already existing discs.";
fDesc[13] = "128 teams in preliminary in seconds. 5 free tournament credits with each new installation.";
fDesc[14] = "(new in v2.0) blots of paint. Five pictures are included but you can also load images of your own choice.";
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 = '...';
}
}