var fDesc=new Array();
fDesc[1] = "resources consumption, it leaves us navigate quick and safely, free from the annoying advertisements, banners, pop-up ads and flying, and so on.";
fDesc[2] = ", pop-unders, spyware ads, messenger ads, and more! Blocks and removes spyware/adware applications. Automatic updates keep the product up to date!";
fDesc[3] = "Stopper Professional blocks, or quickly closes, pop-up and pop-under ads in ALL browsers, including FireFox, AOL, MSN, Netscape, Internet Explorer & more!";
fDesc[4] = "the Control Panel, Display Properties or Windows Explorer. It can also apply encryption to files and folders for maximum security.";
fDesc[5] = "aggressive pop-up blocker.";
fDesc[6] = "tool, now with added support for Mozilla, and new technology to block annoying Messenger Service and GAIN adserver desktop ads!";
fDesc[7] = "list, Pop-ups Block list with keywords, Limit windows opened.";
fDesc[9] = "manually or at windows startup or with your browser window startup. Instant Notification - Play one of many sounds.";
fDesc[10] = "Stop popup ads, Stealth cookies, Remove Web Bugs, Clean PC and more...";
fDesc[11] = "Pop-Up Stopper Companion provides more efficient pop-up and pop-under blocking technology in an easy to use Internet Explorer toolbar";
fDesc[12] = "ads without a blocker. Now you can easily choose the ones to display. Simple to use, easy to install.";
fDesc[13] = "pop-under blocking technology in an easy to use Internet Explorer toolbar,";
fDesc[14] = "Buster+. Not only does it kill pop-ups and pop-unders, it can remove banners thus accelerating your browsing.";
fDesc[15] = "windows startup or with your browser window startup. Instant Notification - Play one of many sounds.";
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 = '...';
}
}