var fDesc=new Array();
fDesc[1] = "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[2] = "skins. You can change the look of your Windows to Mac, Vista or your favorite game or a sport theme like cars, or cartoons and much more. WindowBlinds offers 8 themes that come along with the program.";
fDesc[3] = "and wallpapers to get rid of the Windows traditional look. Theme Manager is complete software made for all your OS look related matters.";
fDesc[4] = "own custom Windows desktops. DesktopX works by giving Windows its own native desktop object system. With it, users can add objects to their desktops that can do nearly anything the user imagines. Objects can be combined together to create mini-applications or used to build entire desktops.";
fDesc[5] = "through a well-organized interface consisting of multiple tabs to create and fine-tune your desired skin. The program requires WindowsBlinds preinstalled to function properly.";
fDesc[6] = "graphics editor. IconDeveloper doesn't. Instead, it assumes that most people who want to create icons are either going to create them using an existing graphics package like Photoshop, MS Paint, CorelDraw, or they take existing images (.BMP, .PNG, .JPG, etc.) and turn those into icons. So instead of putting effort into a bitmap editor, IconDeveloper focuses itself on making it really, really easy to turn existing images into Windows icons and allowing for common modification of those icons (resizing, color changing, etc.). The result is a program that makes icons extremely fast, extremely well and extremely easily.";
fDesc[7] = "customizable. Users can download hundreds of themes and bars for it from the theme library on www.wincustomize.com.";
fDesc[8] = "of design themes for your Desktop and apply them with a single click. As easy as that! But please note that not all themes are free.";
fDesc[9] = "it (program short cuts, system commands, etc.) as well as change its look by \"skinning\" it.";
fDesc[10] = "can be made to launch programs, visit Web sites, paste saved clipboards, control MP3 players, and more. A must have!";
fDesc[11] = "changed to look exactly like Windows Vista and there are other tools and features which will simulate the wonderful performance and appearance of Windows Vista.";
fDesc[12] = "them, and even change their color based on what you're doing.";
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 = '...';
}
}