var fDesc=new Array();
fDesc[1] = "modernized and now it contains many new features that make our navigation more comfortable and faster. Windows Malicious Software Removal Tool searches our computer for malicious software. In this version, we can choose to install Accelerators, Web Slices, Search Providers, and Add-ons.";
fDesc[2] = "capabilities like calendar, task, contact management, note taking, journal, and Web browsing. It can be integrated with Microsoft Exchange Server and Microsoft Office SharePoint Server to provide extended functions to multiple users in organizations.";
fDesc[3] = "them to embed videos in web spaces, blogs, or sites. This tool simplifies the experience of video managing with a modest usage of system resources and good quality, which makes it a good choice for online videos.";
fDesc[4] = "for ZIP/ARJ/LHA/RAR/UC2/TA R/GZ/CAB/ACE. Command line, full text search also in packed files, button bar,FTP client.";
fDesc[5] = "and sharing through the Internet, open format. Similar to PDF files, this smaller file contains scale and design information ready to be managed by designers and experts. The name of DWF Viewer has been changed to Autodesk® Design Review.";
fDesc[6] = "powerful engine that allows you to perform quick, complete or custom scans of your system. Also, you can update its database for having the most current protection. A must-have program.";
fDesc[7] = "from the preferences window (WinAMP, DirectShow, Avi Synth, and Global Keys). Now, there are many different interface skins ready to be downloaded individually from the developer's site.";
fDesc[8] = "works in both CDT and LCD monitors. It lets you change the color preferences of your monitor by setting custom gamma levels or loading a default profile, which is automatically applied to your screen.";
fDesc[9] = "or in training mode. Choose between six different players and try playing in all the four different clubs. A billiard game with great graphics and views that you can zoom in or out.";
fDesc[10] = "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[11] = "and very intuitive user interface that includes several window display preferences to suit you best. The application allows you to solve the entire crossword from once, as well as check or reveal a current letter, a selection only, and all letters.";
fDesc[12] = "task since programs may put information and configuration options in many places, such as the Registry, the Windows directory, etc.";
fDesc[13] = "in your system tray or using hotkeys, which you can establish on the utility’s preferences window. The installation process is very easy to perform. This utility works on Windows 2000/XP/Vista platforms.";
fDesc[14] = "clock display, alarms, time synchronization, popup calendar, time speaking and more. Once installed, AlfaClock will change the appearance of your taskbar clock. You can then customize it, by right clicking over the clock and choosing the Preferences option.";
fDesc[15] = "control and can specify what columns are to be listed or printed. Select filenames only or include file size, date, time, path, extension, attributes, date and time of access, MP3 ID3 tags, etc.";
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 = '...';
}
}