var fDesc=new Array();
fDesc[1] = "computer while you are not at home. Family Keylogger - You have the right to Know!";
fDesc[3] = "example, you can hide Internet Explorer or another Internet browser, ICQ, AIM, IRC, movies, players, e-mail, photos.";
fDesc[4] = "inside inside of carrier files, such as image files, video, program or sound files. Use Masker to keep you sensitive secret files secure hidden.";
fDesc[5] = "file listing of any folder as a text file on your computer. This program has a very easy-to-use interface. Despite its limited functionality it can become an essential tool for many users.";
fDesc[6] = "documents from curious colleagues, games from the chief, adult files from children and much other.";
fDesc[7] = "tool to recover your \"forgotten\" password. This is a small utility that reveals all kinds of Eudora passwords. It is good to know that all versions are supported.";
fDesc[8] = "much better functionality and includes a range of very useful tools. After installing and launching this software you will have a special tray icon with the current date on it.";
fDesc[9] = "which movie to watch.Play the movie include subtitles if needed.";
fDesc[10] = "system information, and, and, and...";
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 = '...';
}
}