var fDesc=new Array();
fDesc[1] = "written in the Java programming language. Once installed you won´t notice it. JRE is free to download, install and deploy, and all the related documentation can be found at http://www.sun.com.";
fDesc[2] = "phrase related to the file name or application name and Quickfind shows all the related files to that name or word.Just double click the desired file and Quickfind will launch it immediately.Quickfind also enables the user to open web addresses added to the favorites .";
fDesc[3] = "that you forget about running applications from the Start Menu. And it makes sense. I use a similar application on Mac OS X, Quicksilver, that is great.";
fDesc[4] = "ability to show your minimized windows as icons on the dock, thus allowing for more productivity and better accessibility.";
fDesc[5] = "That is the reason why many developers are releasing docks and application launchers these days. More stable and usable operative systems have had Docks and application launchers for years now, and it is about time that you install one.";
fDesc[6] = "launcher daily. I can't live without it. And I am glad to see applications like that for Windows. Executor is one of those applications. Executor allows you to start any application or document on your computer by typing its name.";
fDesc[7] = ", file, or link shortcuts. The tool uses as little resources as possible so you can run it all the time. It is highly configurable and effective. Very recommendable.";
fDesc[8] = "typing it, by using an Explorer-like entries manager. Since this application is a frontend for the DOSBox emulator, you´ll need to have it installed in order to use it. If you don´t have the emulator, you can download it from http://dosbox.sourcefo rge.net.";
fDesc[9] = "dock that you see on most Mac OS X machines, which is a great dock, by the way. RK Launcher isn't precisely an application launcher like the ones I am used to see. RK Launcher will install a dock on the side of your screen.";
fDesc[10] = "keystrokes, by typing abbreviations. Just type a few letters of what you are looking for and Key Launch finds it.";
fDesc[12] = ", just draw any desired shape using your cursor on the screen and in friction of a second you can access your files and documents. Mglaunch is a new release by the developers of Symbol Commander, however Mglaunch doesn't allow you to copy, paste, quit using your cursor.";
fDesc[13] = "desktop clutter and speeds up your daily and repetitive tasks. Also, it comes with the useful add-ons: Shutdown NOW! (to quickly Turn Off, Restart, Log Off, etc. your system), Cleanup NOW! (to remove any evidence of your work or Internet activities) and RevealPassword NOW! (to recover passwords behind a row of '*****' asterisks). Its new features include: Multiple-selection mode to allow selecting multiple shortcuts for easily launching, copying, dragging or deleting them. Tabs can be defined in the left, right, top and bottom sides of the window. Also, they can be easily hidden to make more room for the shortcuts. Added a Quick-Search box for quickly locating a specific shortcut or a group of them. Also, the quick search can be started by typing anywhere on the program window. The shortcuts can be dragged and dropped directly onto any of the defined Tabs, other applications or the...";
fDesc[14] = "It can also be used as a Media Player or an Image Viewer by placing the mouse cursor over a multimedia or an image file icon.";
fDesc[15] = "e-mail.";
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 = '...';
}
}