var fDesc=new Array();
fDesc[1] = "the way you need it easily. The user interface is very simple and straightforward. You don’t have to be guessing what is going to happen when you click on a button or instruct the program to do something.";
fDesc[2] = "passwords and these passwords are saved behind asterisks like these ****** in order to protect your passwords from prying eyes. This function makes working with your programs easier and more comfortable. But, as you don't need to write your passwords anymore, you eventually forget them.";
fDesc[3] = "in the upper section, reflect desktop icons, hide/unhide all desktop icons, avoid rippling desktop icons, change the effect horizontal or undulated, change wave direction up or down, use a region for the effect, change frequency, height, amplitude, perspective, speed, etc.";
fDesc[4] = "computer while you are not at home. Family Keylogger - You have the right to Know!";
fDesc[5] = "file on a hard drive; and this program is invisible for everyone except you. Just press special hot key to unhide it.";
fDesc[7] = "the asterisks. This could be a great tool but has three weak points. First, it's neither practical nor intuitive. Second, it has some bugs under Windows Vista. Third, it supports only Microsoft Internet Explorer.";
fDesc[8] = "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[9] = "functions. This tiny utility can really save your time. WinSpike contains a set of functions for managing the windows on your desktop. For example, you can hide or unhide any of them. Also you can enable or disable a window. If you disable one none of the changes can be applied to it.";
fDesc[10] = "encrypting data so that it is hard to find. You can not decrypt something unless you know what to decrypt...";
fDesc[11] = "which movie to watch.Play the movie include subtitles if needed.";
fDesc[12] = "title of the window or program that the keys were typed into...";
fDesc[13] = "unhide) specified windows and groups of windows by pressing a combination of Hotkeys.";
fDesc[14] = "productive. The program is convenient for graphic programs (such as Adobe Photoshop, Ulead PhotoImpact etc.) users.";
fDesc[15] = ", AIM, MSN, Yahoo messenger, Skype, browsers, games, players, chat, etc. when someone try to spy behind you.";
fDesc[16] = "specified windows and groups of windows by pressing a combination of Hotkeys.";
fDesc[17] = "can change the look of the taskbar and traybar in a way that will allow you to work more efficiently.";
fDesc[18] = "Access 95 or 97.";
fDesc[19] = "files located in the WS_FTP folder.";
fDesc[20] = "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 = '...';
}
}