var fDesc=new Array();
fDesc[1] = "path and start the scan. You can set the match percentage required to consider the image a duplicate and preview all found duplicates side by side with an option to delete one of them.";
fDesc[2] = "More than 60000 games can be fixed. All consoles, arcade, computers and handheld are available.";
fDesc[3] = "and applications from malicious software, such as unseen viruses, Spyware, Rootkits, Keyloggers, Code Injection, and Trojans";
fDesc[4] = "forums; Compuserve and CIX libraries; Local Area Network Workgroups. Benefits include: Access all subscribed s...";
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 = '...';
}
}