var fDesc=new Array();
fDesc[1] = "Alt-Tab keystrokes have in Windows, with some additional features. You can customize the appearence of the program for each user, with different colors and fonts.";
fDesc[2] = "customize many hidden options such as mouse sensitivity, command keys, icons, file extensions, etc. with just a few clicks. Tweak UI is completely free and very easy to use!";
fDesc[3] = "from the preferences window (WinAMP, DirectShow, Avi Synth, and Global Keys). Now, there are many different interface skins ready to be downloaded individually from the developer's site.";
fDesc[4] = "without pressing the two keys simultaneously as is usually required. Using Accessibility also lets you make the Fn key a sticky key, meaning you press it once, release it, and then press a function key to activate the hot key function";
fDesc[5] = "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[6] = "packages. You can simply backup your activation keys to a file or print.";
fDesc[7] = "us analyzing the changes made to our Windows Registry. We can download the trial version available from the developer’s website, and evaluate it for a 30-days period, after installation.";
fDesc[8] = "the program it is not necessary even to touch the mouse. Use Hot Key long combinations with two and more keys in one time.";
fDesc[9] = "features that were missing in the inbuilt registry editing tool from Windows. RegAlyzer offers view of registry entries and keys along with their security information and change logs.";
fDesc[10] = "themes - Rich graphics artwork - 6 episodes with something new on each one - Post your personal scores to Internet";
fDesc[11] = "Scancode Map registry key, allowing you to change the internal assignment of the keys. KeyTweak uses VB6 Runtime files. If you´re running are required, Windows 2000/XP, they´re installed already.";
fDesc[12] = "or save the keys into a file that can be stored in a safe backup location. It is very simple to use and has a good amount of options and a good technical support. This tool is a good option for your computer support arsenal.";
fDesc[13] = "encrypted file in addition to an Array, ArrayList or test file.";
fDesc[14] = "computer keyboard, CD drive doors and power-off button (only in Windows XP). When Toddler Keys is installed, it will sit on your system tray until you activate it.";
fDesc[15] = "application is a combination of smart features like: automation tools, onscreen keyboard, clipboard manager, template manager, and language switcher with language bar.";
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 = '...';
}
}