var fDesc=new Array();
fDesc[1] = "more features like effects and custom filters that give website developers more functionality in showing better graphics. It is a must on every PC, as many sites rely on this plug-in for showing videos";
fDesc[2] = "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[3] = "all our system (including external devices, e-mail, Internet, instant messenger and drivers) or a custom scan. It monitors our computer looking for viruses, troyans, spyware, adware, tracking cookies, malware, and other unwanted threats.";
fDesc[4] = "operation of mouse and keystrokes and saves them as macros, then Easy Macro Recorder can play back recorded macros to automate your work.";
fDesc[5] = "be saved to disk as a macro, bound to hotkeys, extended with custom commands or compiled to an EXE file.";
fDesc[6] = "is an easy file compression & security program, thecompression / extraction wizards make working with archives simple providing advanced features. This is done with a small number of steps and some steps can be skipped to use default options.";
fDesc[7] = "program. Dozens of wizards are available to help you create the macros that will automate common computer tasks.";
fDesc[8] = "reliability. Simple, intuitive, user-friendly. Just record & replay. Macro recorder & Macro program.";
fDesc[9] = "you to record your keystrokes and mouse movements into a file with the wk.sp extension, that can later be run by the application, at scheduled times or at your request.";
fDesc[10] = ", signatures, addresses, visiting the same web site over and over, etc. into a simpler job or an automatic process. Record an activity and then re-do that process by just a hotkey combination.";
fDesc[12] = "repeat them. The program sits silently in your system tray and allows you to record and stop recording using hotkeys. The application enables you to save the operations to a script file, which you can later replay or modify as you wish.";
fDesc[13] = "efforts by user such as tapping keystrokes, mouse clicks. The application simply records these actions and movements into a macro and performs a quick play-back under different pre-designed modes like flow mode and Pulse Mode.";
fDesc[14] = "combinations to choose from. It features a simple and intuitive user interface that enables you to easily add, delete, edit and categorize hotkeys. If you are a beginner, you can use the program's help file that will help you understand how the program works.";
fDesc[15] = "wonderful wizard that guides you throughout the different steps of a macro creation and a few samples for you to see the possible uses of the program beyond scheduling.";
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 = '...';
}
}