var fDesc=new Array();
fDesc[1] = "and more. It can be easily customized with the option of over 1500 free gadgets. Its available for XP, Vista, Mac and Linux.";
fDesc[2] = "applications called gadgets, those gadgets offers us a quick access to different tools or functions that may be useful on our daily duties. Microsoft included a little list of gadgets with their sidebar, however there are much more available on vistagallery.microsoft .com.";
fDesc[3] = "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[4] = "Vista gadget so you can use it even without the sidebar. The clock has many features, but after all, it is simply a clock. You can set the clock to be always on top, to be unmovable, to be pinned to the desktop and more.";
fDesc[5] = "use it with Winamp, Windows Media Player, Musicmatch, iTunes, jetAudio, Google Sidebar, Real Player, MediaMonkey and other well known media players. WhiteCap will give a new fresh look to your player.";
fDesc[6] = "Windows Vista Aero Theme, Icons, Windows and Menus. Unfortunatelly version 1.1 is very basic and its more similar to longhorn than vista.";
fDesc[7] = "access your Personal Photo Gallery, keep an eye on your appointments, keep track of your Music Library, write down notes as well as having access to Breaking News, Instant Web Searches and Weather Information. There are lots of other things to add.";
fDesc[8] = "Windows and includes an installer. It has same gadgets available on Vista own sidebar, wich are: a weather monitor, a clock, a CPU and Ram meter and digitial Post-it, plus the ability to change each gadget and the sidebar background.";
fDesc[9] = "provide easy access to frequently used tools. Thoosje Vista Sidebar helps you to organize your gadgets. As you use your computer to access information, perform tasks, and interact with software, you may at times feel like you're facing information overload. You have to open a web browser just to check the weather, open an application to view your calendar, and open a calculator program just to add up a few numbers. Now, with Windows Sidebar and its associated mini-applications called gadgets, the specific information you need is at your fingertips.";
fDesc[10] = "disabling them depending on your power setting preferences (behaviors on battery or ac power) just like you normally do with the LCD screen brightness and standby / hibernation options.";
fDesc[11] = "last minute headlines from the user specified news websites, showing them on the PC desktop with a very attractive and customizable interface. KlipFolio is runs in the background, with a minimum consumption of resources.";
fDesc[12] = "Player you really need on your PC!";
fDesc[13] = "iLike.com service, which allows you to search for music and videos and buy them. The application installs itself into your music player. In this case, the sidebar works only for iTunes, but there are other releases that work with Windows Media Player.";
fDesc[14] = "Media Player and iTunes. You will then be able to know bands and themes that people with similar music tastes like, but you haven“t heard of.";
fDesc[15] = "from the Google Desktop Sidebar. This plugin contains four basic functional buttons that we usually use. These buttons are play, stop, back and skip.";
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 = '...';
}
}