var fDesc=new Array();
fDesc[1] = "create shortcuts which enable you to launch applications, find contacts or take a picture in a simple, fast and easy way. Its easy to set up, and simple to use.";
fDesc[2] = "currently used applications. It also offers you many features such as a calendar, web search widget and a click. Object Dock allows you to fully customize the dock, its position and many options and effects.";
fDesc[3] = ", search for unnecesary files, manage the start up menu so you can change whatever you might need, shortcuts that have become invalid, check the disk free space in your HD unit, manage the add/remove programs list, etc. to get the best results on your system operation, perfomance and speed.";
fDesc[4] = "all history details, delete duplicate files to free your disk space, optimize memory, manage and organize system settings, and perform many other activities.";
fDesc[5] = "drives, card readers and other gadgets that you connect to your PC through the USB ports. USB Safely Remove is intended to allow the users to remove USB drives safely.";
fDesc[6] = "If you want to add or modify shortcuts and menus in your favorite programs to make them more consistent or easier to use, Resource Hacker will do it fairly easily.";
fDesc[7] = "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[8] = "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[9] = "because of the advent of Mac computers, which all come with an inbuilt application that does just this. Dexpot allows you to create up to four different desktops in which you can add files and shortcuts, and you can have programs running on every one of them.";
fDesc[10] = "Active Desktop Application designed to display entertainment, information, and utility in the PCs of the cybercafes located in India. It features system, Internet Explorer and Firefox shortcuts, Yahoo Messenger, GTalk and Windows Live Messenger shortcuts, web search, and interactive ads.";
fDesc[11] = "one, with only shortcuts to programs and folders you normally have on your Desktop or access it via the start menu. Create your own skins to personalize it.";
fDesc[12] = "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[13] = "you would like to, and sometimes it becomes a terrible headache. But fortunately, FSL Launcher is here to help you out. This small and simple application will let you to organize your shortcuts, and you will be able to access them in a different, handy and smart way.";
fDesc[14] = "or to write text. You can, for example, create a keyboard shortcut to write your email address, or your complete name, or your Social Security number. This program works under Word, Excel, and every Internet browser.";
fDesc[15] = "entire word, phrase, sentence, paragraph or document.This incredible application can be used with many applications such as word processors, dictation software or email clients.";
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 = '...';
}
}