var fDesc=new Array();
fDesc[1] = "provides the following features: power management scheme and battery resource information and health. This utility also detects unsupported power-adapter/dock/bat tery scenarios and displays warning messages.";
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] = "digital cameras, but the application can be used by anyone. Version 7.1 adds several new features. The first one is the ability to tag pictures. By tagging a picture, you give it a keyword, which you can later use to find pictures.";
fDesc[4] = "application is a desktop program that you need in order to run Yahoo! Widgets. The Widget Dock is a handy at-a-glance way of keeping on top of the information or entertainment the Widget handles";
fDesc[5] = "of limitations. The first impression you get running the application is the lack of effort from Dell to make their dock experience at least similar to stardock freeware.";
fDesc[6] = "animated dock on your desktop which allows you to quickly and easily launch applications. The plus version is enhanced with features that allow to explore and launch programs, documents, mail, music, and other in a simple, smart, and configurable way on your desktop.";
fDesc[7] = "of the taskbar. Once installed, every time you put the mouse over an icon in the taskbar, Visual Tooltip will show you a mini window with the content of that program. You can build a dock that will allow you to easily cycle through the different programs by adding that windows to it.";
fDesc[8] = "interface enhancements: NextSTART, WorkShelf and NeXuS. Winstep Xtreme raises the usability bar of Windows customization to another level: it adds tremendous functionality to Windows and complete control over every aspect of the User Interface. And it's FUN to use! The more you use Winstep Xtreme the more you'll go 'Wow, this rules!' as you discover all the functionality that lies beneath the breathtaking eye candy. No need to edit complicated configuration files or switch shells either - it's all point and click! All of the hundreds of freely available Xtreme themes are totally resolution independent, do not affect the content of your docks, shelves and menus, and can be switched to at the click of a button - it's that easy! NeXuS is the multi-dock system, and is just perfect for super fast access to your most frequently used applications. WorkShelf is a tabbed dock, better suited for...";
fDesc[9] = "ability to show your minimized windows as icons on the dock, thus allowing for more productivity and better accessibility.";
fDesc[10] = "complete themes and some extra utilities, like WinFlip, Seven Taskbar and CircleDock. The main theme pack is SevenXP, that gives your XP the appearence of the default theme in Windows Beta.";
fDesc[11] = "That is the reason why many developers are releasing docks and application launchers these days. More stable and usable operative systems have had Docks and application launchers for years now, and it is about time that you install one.";
fDesc[12] = "applications like Adobe, AVG antivirus, Microsoft Office and many others with a great design different from original ones. This program is simple and easy to use.";
fDesc[13] = "OS X machines, but slightly less powerful, and not nearly as good-looking. The Dock is the way to go for starting applications and switching between them in Mac. The user wants to recreate this. The Dock is by default filled with applications on your computer.";
fDesc[14] = "dock that you see on most Mac OS X machines, which is a great dock, by the way. RK Launcher isn't precisely an application launcher like the ones I am used to see. RK Launcher will install a dock on the side of your screen.";
fDesc[15] = "its early days, so it has a lot of bugs and some functionality is not yet available. But I like where this particular app is getting to. I've tried other applications that try to replicate the Mac OS X dock by imitating its looks.";
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 = '...';
}
}