var fDesc=new Array();
fDesc[1] = "PC from numerous threats. The application is free, easy to use and, in a few minutes, will make your computer run much better. It scans your system searching for potential issues with your shortcuts, spyware, registry, and start up programs, and then enables you to clean them up.";
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] = "from Creative, that includes the webcam console ( basic webcam usage), webcam center (basic and advanced usage) or webcam central (replacement for webcam center) and Creative livecam application (animated avatars)";
fDesc[4] = "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[5] = "possibility to arrange you icons in the style the program offers, you can create your own layouts and save them. Also the icons' text or the icons themselves can be set to be hidden when we go off the desktop (or when the focus is on another window).";
fDesc[6] = "programs. It also works as a security tool to protect your data from unwanted hands and provides privacy for your personal computer work. The built-in Internet history eraser, cookie cleaner, add-ons manager and temporary Internet files cleaner keep your web browser running smoother.";
fDesc[8] = "either remove them or replace them with some other custom graphic, you can also remove that shortcut to prefix in the text of any shortcut that windows makes.";
fDesc[9] = "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[10] = "this means that when Launcher is in \"Manage Items\" mode, one can configure shortcuts by \"dragging\" files.";
fDesc[11] = "version 1.05: 1) Default printer detection; the user is prompted for target printer if default not found.";
fDesc[12] = "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[13] = "Show Stopper you can create shutdown shortcut icon on your desktop. So it means you does not require to click on Start button and then on turn off computer and then turn off.";
fDesc[14] = "minimize or move windows around. No hide-and-seek with windows. All it takes is one click on DESKonTOP icon!";
fDesc[15] = "is an Adobe AIR application which plays nice with the Pizza Hut website. Thus, you can fire up the application and start designing how to ease that craving you had. The application is extremely easy to use.";
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 = '...';
}
}