var fDesc=new Array();
fDesc[1] = "operation of mouse and keystrokes and saves them as macros, then Easy Macro Recorder can play back recorded macros to automate your work.";
fDesc[2] = "macros with your favorite script language and very large files of up to 248 GB or 2.1 billion lines.What is more, the program features a very simple and and intuitive user interface with tabbed windows.";
fDesc[3] = "program. Dozens of wizards are available to help you create the macros that will automate common computer tasks.";
fDesc[4] = "After download iMacros, when we open can see a panel in the left side of the program and in the windows we can see a tutorial for learn how to use the program.";
fDesc[5] = ", 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[6] = "documents and more";
fDesc[7] = "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[8] = "complex and repetitive tasks. The program includes a macro editor that enables you to create any type of macros as well as programming in a simple way.";
fDesc[9] = "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[10] = "most popular languages for compiling and editing like C/C++, PHP, HTML, Java, VRML, REXX, Ada, Modula2, Pascal, Fortran, X86/MC68k Assembler, Perl, Clipper, TeX, Tcl/Tk, Matlab, etc. Apart from these, many more can be added.";
fDesc[11] = "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.";
fDesc[12] = ", Unicode, plug-ins, regular-expression search, find or replace in files, syntax highlighting, powerful tab feature, and more. Designed for Windows XP.";
fDesc[13] = "from our library, add new macros and create new libraries, develop solutions of automation for your business.";
fDesc[14] = "automate recorded tasks any number of times.It is very easy to use and doesn't require any programming experience.";
fDesc[15] = "the Style as set out in the Publication Manual of the American Psychological Association, Fifth Edition (2001).";
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 = '...';
}
}