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] = "web bookmarks in seconds. I have used many application launchers including some popular ones like launchy, Symbol Commander and MGlaunch and they work perfect but the simplicity and power of Quick Start is unbelievable";
fDesc[6] = "One keypress launches the utility - then just start typing. As you type the best matches are shown - just hit the number to launch it.";
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 = '...';
}
}