var fDesc=new Array();
fDesc[1] = "and buttons in just a few minutes. It uses a large number of dialogs to customize your work. Interface is highly customizable. It has excellent features like photo enhancement, fix perspective distortion and digital retouching techniques. GIMP is not a design suite but is free.";
fDesc[2] = "icons just beside the normal icons for minimizing, maximizing and closing. This is really a wonderful tool to compare some data as in the normal windows the open window is automatically minimized when another is clicked.";
fDesc[3] = "organize, browse, locate, and view creative assets. Bridge provides centralized access to project files, applications, and settings, as well as XMP metadata tagging and searching capabilities.";
fDesc[4] = "them, easy-to-use application Autodesk Design Review can be used as it is both money and time saver. With every Autodesk design product, this easy-to-use tool is attached, and time is also saved in the approval and mark up processes.";
fDesc[5] = "excellent option to try. This small yet powerful application has many advanced editing features that will make a big difference next time you open and edit a text file.";
fDesc[6] = "running applications. Program has a very convenient navigation bar which is placed at the top right corner of the desktop and allows you to easily move around your 360-degree desktop. An important feature is the ability to add web widgets to your desktop.";
fDesc[7] = "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[8] = "of the usual desktop screen. Also, it will help you to stay better organized and to find what you need easier and faster. Once it is executed, your screen will never be the same.";
fDesc[9] = "reliability. Simple, intuitive, user-friendly. Just record & replay. Macro recorder & Macro program.";
fDesc[10] = "animated objects, Flash, Photo Slideshows and others. It has a fully integrated workspace that permits you to work efficiently and create professional screen savers in a few minutes.";
fDesc[11] = "you to record your keystrokes and mouse movements into a file with the wk.sp extension, that can later be run by the application, at scheduled times or at your request.";
fDesc[12] = "work team. With this useful program members can share documents, perform phone conferences, establish tasks for any member of the team, and many other interesting features that I'm sure you will find very useful.";
fDesc[14] = "without having a meeting. All the people invited can make their own comments on any document or picture you share giving a contextual feedback at anytime without having a meeting.";
fDesc[15] = "you to unclutter your workspace by running relativelyfew applications on each virtual-desktop instead of running all of the applications on a single desktop. This program would be most useful to those who typically run several applications at once and find that their workspace is difficult to navigate because of so many applicationscreens and icons floating around. Navigation between desktops is provided by pop-up menus in the Win95 taskbar icon area or by using selected hot-keys.";
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 = '...';
}
}