var fDesc=new Array();
fDesc[1] = ", eliminates clutter, automatically repairs errors and more. The System Mechanic interface displays these main features: Dashboard which analyzes and repairs problems, ActiveCare for automate maintenance, Tools which runs specific tools and Reports for feedback.";
fDesc[2] = "Includes Softwriting handprint recognition demo. SimpleOCR is also a royalty-free developer toolkit (aka SDK or API).";
fDesc[3] = "profiles from a single utility. The DCP Connection Manager replaces multiple utilities that were required in the past to configure network connections and settings.";
fDesc[4] = "Microsoft SharePoint platform, and tailor your SharePoint site to your needs, all in an IT-managed environment. It provides the professional-quality design tools you need to create great-looking SharePoint pages that are compatible with a wide range of browsers.";
fDesc[5] = "space or to hide your sensitive information from prying eyes, protecting it with a password. Other things you can do with this powerful program are automating the process of backing up your important data and creating self extracting files.";
fDesc[6] = ", easy and allows you to edit and create good looking layouts. It also lets you save your work and use it as wallpaper. It has a really simple and intuitive interface, so you will easily understand how to you use it.";
fDesc[7] = "lets you automate these actions. All you need is ONE mouse click and everything you want will be done.";
fDesc[8] = "be saved to disk as a macro, bound to hotkeys, extended with custom commands or compiled to an EXE file.";
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] = "cookies. Copy and store websites on portable media such USB and CD. Convert dynamic websites into static.";
fDesc[11] = "repetitive text needs. Automate tedious and repetitive typing. Reduce errors. Free lite version allows up to 15 shortkeys.";
fDesc[12] = "reliability. Simple, intuitive, user-friendly. Just record & replay. Macro recorder & Macro program.";
fDesc[13] = "Macros that do the job for you.";
fDesc[14] = ", 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[15] = "scans your hard disk(s) for unwanted files and assist you in deleting them.";
fDesc[16] = "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[17] = "local computer, computers in a LAN workgroup or a big network. The program features a simple and intuitive user interface which is available in three languages (Spanish, English, and German) and is great for beginners.";
fDesc[18] = "macros to schedules, hotkeys or desktop shortcuts, or compile to standalone EXEs. Automate those mundane, repetitive tasks.";
fDesc[19] = "there is, as well as customize, collaborate and automate workflows. The professional version of the OnTime 2008 consists of many features that are suitable for teams collaborating and has everything for the process, security, reporting and working with customers.";
fDesc[20] = "execute programs, system shutdowns, open documents or send messages or reminders.These tasks can be launched at a given date and time specified by the user.";
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 = '...';
}
}