var fDesc=new Array();
fDesc[1] = "personal information with a password. The program has a very user-friendly interface that enables you to locate its useful tools without having to launch them separately.";
fDesc[2] = "weather forecasts, explore foreign countries, zoom and rotate the globe. Watch planet Earth the way only astronauts do!";
fDesc[3] = "of flames and burning wood! You can now have the warmth, ambiance and romance of a fireplace - wherever and whenever you want.";
fDesc[4] = "options, Advanced Search Tool Bar and Tab Floating Preview. Good for the Newbie and the Pro Users.";
fDesc[5] = "award-winning Real-Time protection. Features include Pop-up Blocker, Phishing protection, Hi-jack killer & much more. Download STOPzilla now.";
fDesc[6] = "and more.";
fDesc[7] = "in increased browsing speed. SpyDeny feature monitors your PC against incoming spyware.";
fDesc[8] = ", and no wasted bandwidth waiting for ads to download.";
fDesc[11] = "The program works with Microsoft Internet Explorer. Trial period: 5 days. Buy it for only $9.95.";
fDesc[12] = "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[13] = "disable ads without killing any useful web pages. It supports IE and Netscape. It can kill flash ads and manage the messenger service.";
fDesc[14] = "stop adware and spyware pop-ups, web popups, and block banners which will result in faster web browsing.";
fDesc[15] = "prevents new windows from automatically opening while you are browsing the internet.";
fDesc[16] = ", slow surfing speeds, spying cookies). Works with all Web Browsers (AOL, Netscape, Internet Explorer, Opera)";
fDesc[17] = "they even open.";
fDesc[19] = "windows startup or with your browser window startup. Instant Notification - Play one of many sounds.";
fDesc[20] = "faster surfing. You can allow popups by holding down Ctrl while clicking a link. It's very easy to use because it's self configurable.";
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 = '...';
}
}