var fDesc=new Array();
fDesc[1] = "an effective blocking barrier against such damaging software. The program is vey light and easy to use, as well as powerful.";
fDesc[2] = "will kill them even before they appear on the screen.";
fDesc[3] = "pop-under ads and will kill them even before they appear on the screen.";
fDesc[4] = "Netscape, Internet Explorer, and Opera. Popup Sweeper is an easy program that toggles on and off quickly and easily, needn't learn how to use.";
fDesc[5] = "disable ads without killing any useful web pages. It supports IE and Netscape. It can kill flash ads and manage the messenger service.";
fDesc[6] = "prevents new windows from automatically opening while you are browsing the internet.";
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 = '...';
}
}