var fDesc=new Array();
fDesc[1] = "Download Manager will let you have full control over your downloads, accelerating download speed to squeeze your bandwidth.";
fDesc[2] = "The System Information contains seven TABS for the Video, Audio, Network, Processor, Memory, Motherboard and BIOS information and Summary of all the hardware on the computer. The Boot Options allows the change of Boot order.";
fDesc[3] = "is a replacement for Windows Explorer’s copy functionality. It replaces Windows Explorer file copy and adds many features like transfer resuming, copy speed computation and control, improved copy progress display, copy list editable while copying, and an error log.";
fDesc[4] = "cleaning / deleting unnecessary files. It can also be used as a tool to monitor your network usage. Realtime Disk, Network, Memory and CPU usage graphs are available. Not much features in the program. Anyway, rating 3.";
fDesc[5] = "page are Express, Memory and Disk. Express Memory Optimization fully optimizes the system and frees unutilized memory Memory Usage Check advises on upgrading the memory modules installed on the system Disk optimization deletes unneeded items and releases occupied disk space";
fDesc[6] = "This tool stays in the system tray and also manages to change the look of your system clock and calendar with various skin change options.";
fDesc[7] = ", installed devices, memory and CPU usage, running processes and service, drive properties, among other technical details. All this information can be can be saved as a file, exported to HTML, XML or text format, and just viewed in its categorized user interface.";
fDesc[8] = "disk activity and the network port usage. This program can be installed in English, German, Dutch, Polish or Russian. Once installed, the program stays as an animated icon in the system tray. The icon will graph the CPU usage in real time.";
fDesc[9] = "advanced capabilities and powerful features of this memory booster will keep an optimized and improved performance of your system.";
fDesc[10] = "helps you to run your PC without errors and internal system problems. It also offers a Windows tweak tool that can make shell changes to your system to avail you some useful facilities.";
fDesc[11] = "shows detailed information about the physical and paged memory. MemoryMonitor has the option to hide on the system tray and runs in the background. It optimizes physical memory and move applications out the physical memory to improve the system performance.";
fDesc[12] = "works on all old operating systems of window up to window XP. RAM Medic is actually a process manager who manages processes in the Random Access Memory (RAM) or said physical memory.";
fDesc[13] = "shows, by default, digital numbers reflecting the free available memory, and the CPU load through a bar. By pressing the right button of the mouse over the system tray icon, you will open the contextual menu.";
fDesc[14] = "Framework applications. Along with that the usage of memory is also profiled. It also profiles ASP. NET applications that usually runs on Information server of Internet. Finally all the window services are also profiled.";
fDesc[15] = "Activity. FAST Defrag Freeware 2.3 works on Windows 9x/ME/2000/XP platforms. FAST Defrag Freeware 2.3 memory optimization cleans and recovers the memory that is not in use. You can hide it on the system tray to be always monitoring your system.";
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 = '...';
}
}