var fDesc=new Array();
fDesc[1] = ", DVD-R/RW, DVD+R and other formats (high definition videos included). The new version of PowerDVD offers many new features; for instance, True-Theater HD (which boosts up low resolution videos to higher resolutions) and True-Theater Motion which allows to increase the frame rate.";
fDesc[2] = "configurable popup calendar that opens when the systray clock is clicked. No more double clicking on the clock just to view the calendar in the Date and Time Properties dialog box.";
fDesc[3] = "in terms of graphics. It enabled users to see a thumbnail of the Windows by simply placing the pointer on top of the Window's button on the taskbar. This is more than a graphical tweak though.";
fDesc[4] = "system. That's where filehippo.com Update Checker comes in handy, as the name suggests is a utility developed by filehippo.com. It scans a user computer for installed softwares & utility then it generate a list of softwares & send this information back to filehippo.com to check whether newer versions of these softwares are available or not. All this is done within a time period of 2-5 seconds. The result is then displayed in the browser windows for you to download. It also shows the recent beta versions of the softwares installed. You can check for newer updates right from your taskbar using the tray icon. From the taskbar it automatically searches for new updates & alerts you using a popup notification. You can also customize your results or change the default browser in which you want to show your result. It is a boon for computer users who want their softwares to be updated all the...";
fDesc[5] = "your taskbar, which makes sense. With it, you can simply select the buttons that are next to the Start button in Windows and move them around any way you like.";
fDesc[6] = "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[7] = "look. You can set the transparency or opacity of the taskbar from 1% to 100%. If you want your taskbar to be darker then the opacity should be increased, and for lighter taskbar (transparent taskbar) the opacity should be lowered.";
fDesc[8] = "the original clock itself. We are talking about a small and simple utility without too many features to get in the way and slow things down.";
fDesc[9] = "one, with only shortcuts to programs and folders you normally have on your Desktop or access it via the start menu. Create your own skins to personalize it.";
fDesc[10] = "groups for your shortcuts with the possibility of adding more links without using additional taskbar space. The application is really easy to use and the only thing you have to do to add, remove or rearrange shortcuts is drag and drop or right-click shortcut.";
fDesc[11] = "displays the notebook battery values (i. e. remaining battery capacity) in the Windows Taskbar. Notebook BatteryInfo is specially designed for notebooks. It will work even on a stationary PC but most desktop PCs will not have a battery as power supply.";
fDesc[12] = "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[13] = "regular taskbar on their desktop using this wonderful software tool Titanium Taskbar. The date and time can also be given a soothing and cool look by customizing their Colors and font.";
fDesc[14] = "want to have them. One of the benefits of the Taskbar Button Manager program is that it is very easy to use. Everything can be done by simply dragging and dropping the buttons to where you want them.";
fDesc[15] = ", you simply drag the sliedr on a little rectangle to see your taskbar fading into your Desktop. When you find the opacity level you like, just close the program and get back to work!";
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 = '...';
}
}