var fDesc=new Array();
fDesc[1] = "search anything on the Internet, using any Internet Engine. This application has got a lot of benefits, such as navigation, popup blocking, search options, shopping options and more.";
fDesc[2] = ", spybots, malware and tracking threats from your PC. Provides real time protection.";
fDesc[3] = "kids from spending hours in chat rooms or remove undesired websites from their view. Software access and uninstall password protected.";
fDesc[4] = "the child browses through in the Internet Explorer. If some obscene content will be found, program block such pages.";
fDesc[6] = "webmail from work even when its blocked. Lets you help friends surf from behind iron firewalls.";
fDesc[7] = "such as browser cookies, history and temporary files.";
fDesc[8] = "load automatically on start-up, navigate to the login pages and then fill in your usernames and passwords.";
fDesc[9] = "except approved to be visited on the computer. Block questionable content from your kids eyes or use the software as a kiosk application.";
fDesc[10] = "Pop-Up Stopper Companion provides more efficient pop-up and pop-under blocking technology in an easy to use Internet Explorer toolbar";
fDesc[11] = "interface makes it simple to create access rules controlling what activity should be blocked.";
fDesc[12] = "and efficient it has advanced site and URL blocking rules that put you in control of your internet connections.";
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 = '...';
}
}