var fDesc=new Array();
fDesc[1] = "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[2] = "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[3] = "groups for your shortcuts with the possibility of adding more links without using additional taskbar space. The application is really easy to use and the only thing you have to do to add, remove or rearrange shortcuts is drag and drop or right-click shortcut.";
fDesc[4] = ", 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[5] = "of a compact tabbed toolbar divided in different used-defined categories. The program is not really attractive, but it is really intuitive and customizable.";
fDesc[6] = ", 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[7] = "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[8] = "at specific times. Reminder. Shutdown the computer at specific times. Automatic launch of files and programs after loading system.";
fDesc[11] = "Launcher is located in the tray and won't interfere your usual activity. Free software that do not contain any bad-ware.";
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 = '...';
}
}