var fDesc=new Array();
fDesc[1] = "with Spybot - Search & Destroy. This tool specializes in the removal of these kinds of threats while the Antivirus companies are barely just offering this.";
fDesc[2] = "viruses, worms, Trojans and others. Keep in mind that there is not a 100% viruses program protection, you have to make your own precautions, like making Backups from your personal information. For security reasons save your information.";
fDesc[4] = "happening on your computer. It runs hidden in the background, and automatically logs all keystrokes, and can also take snapshots of the desktop.";
fDesc[5] = "computer while you are not at home. Family Keylogger - You have the right to Know!";
fDesc[6] = "Keyloggers are small spy programs that record everything you type on your computer, including documents, emails, usernames and passwords.";
fDesc[7] = "against \"custom-made\" software keyloggers, which are extremely dangerous - and very popular with cybercriminals.";
fDesc[8] = "that silently logs your keystrokes and steal your passwords which are known as keyloggers. It will give you the ability to allow/disallow them and it has an easy to use interface and an automatic start option.";
fDesc[9] = "file on a hard drive; and this program is invisible for everyone except you. Just press special hot key to unhide it.";
fDesc[10] = "keyloggers, depriving them of information about the pressed keys.";
fDesc[11] = "text. Actual Keylogger cannot be seen in the task manager, programs files menu, system tray or uninstall list.";
fDesc[13] = "logfile can be viewed as a text or web page. Use this tool to find out what is happening on your computer while your away.";
fDesc[14] = "Invisible Keylogger runs silently at the lowest level of Windows capturing every keystroke typed including usernames and Windows log-on passwords.";
fDesc[15] = "applications can become serious threats for your privacy. That is why it is very important to have effective tool for detecting and removing keyloggers from your computer. Keylogger Detector is a perfect candidate for becoming such a tool.";
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 = '...';
}
}