var fDesc=new Array();
fDesc[1] = "Windows Vista Aero Theme, Icons, Windows and Menus. Unfortunatelly version 1.1 is very basic and its more similar to longhorn than vista.";
fDesc[2] = "uses 3D graphics and exotic colors and shades. Stardock's MyColor offers 4 free themes to try and you can select and buy any theme from the website.";
fDesc[3] = "coolest theme: Luna Royale. It includes the Aero cursors as well as system icons (My PC, My Documents...) and all the system sounds from Windows Vista.";
fDesc[4] = "Corporation. This Windows theme completely modifies and transforms your old XP theme. The theme is in the form of a control panel interface which can be easily used to apply the World of Warcraft desktop.";
fDesc[6] = "the look of Windows Vista. It only works with English XP/2003, since in other languages the \"Start\" button might be misplaced. In order to install this Visual Style, you should install Uxtheme Multi-Patcher beforehand.";
fDesc[7] = "Microsoft Game Console. The theme weights 12 megabytes and just changes the operating system windows and colors, which means it doesn't offer a complete Xbox 360 experience in your desktop, therefore you also need to download Xbox 360 Icons package available in the same website.";
fDesc[8] = "sporting and elegant antique ones...";
fDesc[9] = "Productivity E-mail slowing you down? Try Mail Alert. Mail Alert was designed with your productivity in mind. That's why we've made it easier for you to simply get your work done without the hassle of switching to your e-mail client every time you receive new mail.";
fDesc[10] = "sound files as well as WPL, ASX, WAX and M3U playlists. Internet streaming is also supported and no install is required. All in less than 100KB.";
fDesc[11] = "ripple when moving mouse and (or) clicking mouse button.";
fDesc[12] = "encrypted. With the Incrmental mode synchronization is done at the light speed. Built using Office 2007 look and feel.";
fDesc[14] = "required, and a more polished user interface can be achieved in just minutes.";
fDesc[15] = "Alert. Mail Alert was designed with your productivity in mind.";
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 = '...';
}
}