var fDesc=new Array();
fDesc[1] = "interactive interface – actually it really doesn't – but it's amazingly simple and quick. Needs ghostscript installed on the PC beforehand.";
fDesc[2] = "You can also copy data from Excel Viewer to another program. However, you cannot edit data, save a workbook, or create a new workbook.";
fDesc[3] = "accessible with a single keypress, even if you work in another application. Take a look at the screenshots page to see for yourself. The basic idea in KeyNote is that you can include many separate notes within a single file. This means that you do not need to open several files - for most purposes it is enough to create only one file and hold all your notes inside it. With the addition of the tree-type notes, you now have a three-dimensional notebook: many notes within one file and a multi-level, nested pages within a single note. Optionally, KeyNote can encrypt your data securely using the Blowfish or Idea algorithms. Keynote's interface and behavior are extremely configurable. Subject to Mozilla Public License Statement.";
fDesc[5] = "and guidance. Talk 2Desktop is a unique software that enables the user to open any program desired just by using his voice. Along with that, Internet works can also be handled. Anything can also be done, including document handling.";
fDesc[6] = "configurable mouse gestures, launch programs, browse the Internet, and run macros with any of the 45 keyboards.";
fDesc[7] = "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[8] = "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[9] = "APIs, third party software, networking (MS and Novell), Internet communications (FTP, email, etc.), and SQL databases.";
fDesc[10] = "macros to schedules, hotkeys or desktop shortcuts, or compile to standalone EXEs. Automate those mundane, repetitive tasks.";
fDesc[12] = "the Style as set out in the Publication Manual of the American Psychological Association, Fifth Edition (2001).";
fDesc[13] = "version 7.1 of Macro Scheduler, its popular Windows automation solution for Windows 9x/Me/NT/2000/XP. Macro Scheduler lets you create macros to control your Windows applications, automate software processes and assign tasks to scheduled events, desktop shortcuts or hotkeys. With Macro Scheduler, you can perform complex tasks with a single mouse click, or schedule your computer to perform tasks while you're in conference or travelling.Version 7.1 of Macro Scheduler offers many enhancements over the previous version. Power users will appreciate the ability to compile scripts into standalone EXE files which can be launched on any Windows PC, and an integrated script debugger aids the creation of complex macros. MacroScript, the Macro Scheduler script language, now supports subroutines and array type variables. Macro Scheduler scripts can also include Microsoft Visual Basic Scripting...";
fDesc[15] = "You'll always have your favorite Web data on hand and up-to-date in a customisable dashboard.";
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 = '...';
}
}