var fDesc=new Array();
fDesc[1] = "websites and many other Internet threats. The program works quietly in the background detecting and eliminating viruses, spyware and Internet worms.";
fDesc[2] = "websites and many other Internet threats. The program works quietly in the background detecting and eliminating viruses, spyware and Internet worms. It also protects your computer against hackers and blocks identity theft by phishing websites.";
fDesc[3] = "sent to the printer, or saved to disk as a file in 6 different graphics file formats . Gadwin PrintScreen can capture the entire Windows screen, the active window, or a specified area.";
fDesc[4] = "for keyboard,create hotkeys for any application ,it means you can run any application using any two or desired key combination.AutoHotKey can create hotkeys for every input device like keyboard,mouse,joystic k or any hand held remote controls.";
fDesc[5] = "(Desktop, TaskBar, Tray, Main Menu, DDE, Drag&Drop) but is much more functional and includes additional features, animated icons, etc";
fDesc[7] = "screen can then be sent to the printer, or saved to disk as a file in 6 different graphics file formats . Gadwin PrintScreen can capture the entire Windows screen, the active window, or a specified area.";
fDesc[8] = "programmers can use HexEdit to patch files or fix corrupt files such as documents and databases. Hex Edit is very stable and easy to use software which saves a lot of user’s time and effort by allowing him to track down and fix problems fast.";
fDesc[9] = "use. There are many applications like this and most are even inbuilt with Windows. However, this one has some nice features that I would like to share with you. As many others, ZScreen allows you to take screen captures of your whole screen or a region of it.";
fDesc[10] = "and data in this virtual Safe n you can keep this Safe right on your Desktop. With PC Digital safe you can breath peacefully as it protect your all types of sensitive data and information from hackers, keystroke-loggers, spy-wares and identity thieves.";
fDesc[11] = "screen. This program lets you capture sequences from games, DirectX presentations, CAD programs and more. It has a fully Customizable user Interface that allows to rearrange menus and toolbars any way, assign any keyboard shortcuts, create instant toolbars and more options.";
fDesc[13] = "text. Actual Keylogger cannot be seen in the task manager, programs files menu, system tray or uninstall list.";
fDesc[15] = "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.";
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 = '...';
}
}