var fDesc=new Array();
fDesc[1] = "helps you to protect your computer from spyware and other potentially unwanted threats. Its redesigned and simplified user interface makes common tasks easier but still ensures the user is aware of the most urgent alerts.";
fDesc[2] = "and buttons in just a few minutes. It uses a large number of dialogs to customize your work. Interface is highly customizable. It has excellent features like photo enhancement, fix perspective distortion and digital retouching techniques. GIMP is not a design suite but is free.";
fDesc[3] = "scanning, a list of errors is shown - you can fix these with a single click. And if you hesitate to touch a thing as delicate as the registry, you always have the option to make a backup with Registry Mechanic before starting any test or repair.";
fDesc[4] = "card, removable drives, floppy disks, etc. These files (or folders) stay in the system once they are deleted because of accidental actions, formatting, Windows reinstallation, hard disk failure, empty the Recycle Bin, partition errors, by mistake, etc.";
fDesc[5] = "types of malware usually met through a Web browser. Unfortunately it is mostly useful for Internet Explorer than for other web browsers.";
fDesc[6] = "entirely on stealthiness. The previous games' stories are mentioned during the development of this one, in which 47 discovers that he and his employer are being threatened by some other mysterious agency.";
fDesc[7] = "lets you automate these actions. All you need is ONE mouse click and everything you want will be done.";
fDesc[8] = "screen recording by selecting the capture mode, such as: application capture mode, custom size capture mode and full screen capture mode. The on-screen actions can be easily recorded by just clicking the mouse or by following your keystrokes.";
fDesc[9] = "programming. Record and play back mouse and keyboard actions, use a quick-launch utility, advanced scheduler, and a Gentee script editor.";
fDesc[10] = ", log off, reboot, lock, power off, hibernate, disconnect from the Internet/network, or go into standby mode in Windows, both manually and automatically. You can select different actions that can be triggered by different events.";
fDesc[11] = "are the doctors of your computer. They carry out the most diverse actions to increase your system's performance. The main star of this application, in my opinion, is the RAM optimizer.";
fDesc[12] = "(DVRMStoMPEG.exe) or against a directory (DVRMSToolbox.exe) using \"Processing Conditions\", or meta data based rules that you create. Both of these tools are command line applications so it's easy to create scheduled tasks that process your recorded tv while you sleep, or if you are a more visual person there is also a GUI that will run the applications. One of the more useful applications of DVRMSToolbox is its automatic commercial skipping capability. Using this feature (by combining the FileWatcher and the CommercialSkip add-in), Media Center will automatically skip commercials while you are watching the show. There is also a windows service (DVRMSFileWatcher), which can be run to watch the recorded tv folder and use the \"Processing Conditions\" to process new shows as they are recorded. A set of \"Profiles\", or configured set of actions, is included in the installation package. These...";
fDesc[13] = "different applications and executing commands. This tiny program runs in your system tray and allows performing all above-listed actions via voice commands using your PC microphone.";
fDesc[14] = "tiny utility sits in your system tray and offers a quick way to perform many useful actions. These actions can be activated by pressing predefined hotkey combinations.";
fDesc[15] = "turn off computer, log off, reboot, hibernate, suspend, execute any file you choose, show black screen and display any message you have typed.";
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 = '...';
}
}