var fDesc=new Array();
fDesc[1] = "faster and more accurately, this application will capture and save: windows, objects, full screen, rectangle-selected regions, fix size regions, scrolling windows/web pages and anything captured from your screen instantly.";
fDesc[2] = "snooker. After choosing the appropriate game, you can connect to an Internet server, where you will pick a channel with several hundred players to talk and compete with. Offline two-player games are supported.";
fDesc[8] = "years, when you used to be running all the time and when you had to remember something you just jotted it on a piece of paper? The only movement you will see is the numbers themselves as if you were looking at them through water or glass.";
fDesc[10] = "or higher required.";
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 = '...';
}
}