var fDesc=new Array();
fDesc[1] = "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[2] = "operation of mouse and keystrokes and saves them as macros, then Easy Macro Recorder can play back recorded macros to automate your work.";
fDesc[3] = "be saved to disk as a macro, bound to hotkeys, extended with custom commands or compiled to an EXE file.";
fDesc[4] = "program. Dozens of wizards are available to help you create the macros that will automate common computer tasks.";
fDesc[5] = "reliability. Simple, intuitive, user-friendly. Just record & replay. Macro recorder & Macro program.";
fDesc[6] = "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[7] = "other windows that interrupt your workflow.";
fDesc[8] = "integrated Macro Recorder you can build jobs that will set you free from repeating the same taks manually over and over.";
fDesc[9] = "mouse activity can be saved to disk as a macro, bound to hotkeys and more.";
fDesc[10] = "tasks without any programming. The program comes in multiple version including Standard, Premier, Enterprise and Server, which offer different functionalities to different type of businesses.";
fDesc[11] = "customize the macro to perform complex tasks in seconds.";
fDesc[12] = "Executable Macro file which run without Smack";
fDesc[13] = "typical windows look and feel. The tool is organized into a directory tree, files list with original names, a file name editor, quick search, and macro recorder and an extensive tool bar as shortcuts to often used operations.";
fDesc[14] = "keystrokes, mouse events, and clicks then replay them later.";
fDesc[15] = "tasks to a single mouse click or a keystroke. No programming required.";
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 = '...';
}
}