var fDesc=new Array();
fDesc[1] = "your system as well handles innumerable tasks.This multi-functional tool is exclusively designed to configure your Notebook or Desktop for functioning more smartly.";
fDesc[2] = "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[3] = "keep your personal data. It doesn't require any configuration but just entering your password and repeating it twice. It's a must have for all users who share their computers with others. You can also change the password anytime or simply remove your folders with one click.";
fDesc[4] = "your computer when ever you want. Lock My PC can be used for home or office use because of it's simple interface and powerful locking system. Lock My PC can automatically lock your PC at every start up, after system stands By or after desired minutes of inactivity.";
fDesc[5] = "information, dates and events using desktop sticky notes. Free Sticky Notes is an ideal sticky notes program for home and office. You can create and edit desktop sticky notes using different fonts, colors; easily export/import sticky notes database from one version to another; protect computer sticky notes from casual editing/deleting using lock command. Sticky notes settings including default settings can be modified to your preference. You can choose appearance for each sticky note: title customization (background color, font), body customization (background color, font), size customization (manually, zoom feature). Free Sticky Notes resides in the Windows system tray menu for quick and easy access to PC sticky notes and program features. Ability to create PC sticky notes with different priorities, hide sticky notes or place them on the desktop, hide note's body and use transparency...";
fDesc[6] = "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[7] = "shortcut, or via an icon in your system tray.";
fDesc[9] = "password protection at the time the user is absent. The program maintains standard and transparent modes of computer locking.";
fDesc[10] = "that nobody can use your computer during your absence. The program has a very simple interface so you won't have any problems when using it.";
fDesc[11] = "breaking the lock, allow people around to leave messages while your system is locked.";
fDesc[12] = "(such as after playing a game, changing monitor resolutions, crashing, etc.) Finally, you no longer have to re-arrange your icons back to their proper places after changing resolutions! Just run Desktop Resetter and voila, back in business!";
fDesc[13] = "you are not present, then this application might be really useful for you. What DesktopKeeper does, is blocks momentarily your desktop so that no one without a password can use it.";
fDesc[14] = "Desktop Icon or a System Tray Icon or define a Hot Key (eg Ctrl+K , F12 etc).";
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 = '...';
}
}