var fDesc=new Array();
fDesc[1] = "one package. Very known and easy to use toolbar and user interface and every function of a security software makes BullGuard a very compact and useful software.";
fDesc[3] = "and/or the Internet and block/filter unwanted Web or Internet contents. Limit access to internal Windows components and personal folders.";
fDesc[4] = "while surfing the Internet. Parental Internet Filter installs a special network component that receives all network traffic BEFORE it reaches any program on your computer.";
fDesc[5] = "exactly which contents shall be allowed and which not. Varied blocking possibilities for Windows Internals.";
fDesc[6] = "viruses. It acts like a watchdog by constantly keeping an eye on the incoming mails and prevents any malicious thing to enter user's system.";
fDesc[8] = "The Internet Filter allows to specify URL, keywords and file types rules.";
fDesc[9] = "other threats. It also enables you to filter undesirable or dangerous content from web pages that may harm your computer while surfing the net or receiving emails.";
fDesc[10] = "Javascript. With the Parental Protection feature it's easy to include or exclude web pages by URL, or by defining a set of keywords.";
fDesc[11] = "activity and disable Internet connection or use predefined Internet filters. Vista 64 compatible. Protects your PC in Windows Safe Mode";
fDesc[12] = "interface makes it simple to create access rules controlling what activity should be blocked.";
fDesc[13] = "websites of a kind, such as Pornography/Nudity, Violence, Online Orders, Criminal Activities, Drugs, Weapons, Social Networking, and many more.";
fDesc[14] = "internet predators. A comprehensive set of features keep your kids safe and lets you control and supervise their use of the internet.";
fDesc[15] = "and Yahoo messenger controls, user monitoring (including keystroke logging), STEALTH options, and more...";
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 = '...';
}
}