var fDesc=new Array();
fDesc[1] = "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[2] = "its own priority settings: high or low priority, planned work, approved work, etc. Well, this is useful if you have a lot of folders and you need to easily recognize the folder that you are working on.";
fDesc[3] = ", Restore, Close etc. are remained intact. It adds four new menu items - Always On Top, Transparency and Minimize To Tray and Priority.";
fDesc[4] = ", pendrives, etc., and eliminate them if they are found suspicious. When you make a double click to access to an infected drive, the 'autorun.inf' file executes the malware and your system gets infected. This utility helps you to eliminate those files.";
fDesc[5] = ", termination of disallowed processes, and logging of processes executed. With Process Lasso you essentially create rules to manage processes running on your system.";
fDesc[6] = "increase your PC’s performance while you are working. This utility will automatically switch the foreground program to the highest priority. This program can also increase you PCs free RAM, increasing the general performance of your computer as well.";
fDesc[7] = "application. I mean, depending on the priority level you give it, Cpu will orientate a few, a lot or almost all the Cpu power to the program you are working on. Automatically, The final result is an enormous performance gain!";
fDesc[8] = "performance of the system. This program will assign a certain processor priority to the 'current' application (this is, the one that you are actually using 'right now').";
fDesc[9] = "contigous blocks / allocation units. This can slow down the system severely and cause the hard disk to work more if the fragmentation levels are high. Diskeeper can automatically defragment the hard disk. You can specify the Disk priority and CPU priority.";
fDesc[10] = "information, dates and events using desktop sticky notes. Free Sticky Notes is an ideal sticky notes program for home and office. You can create and edit desktop sticky notes using different fonts, colors; easily export/import sticky notes database from one version to another; protect computer sticky notes from casual editing/deleting using lock command. Sticky notes settings including default settings can be modified to your preference. You can choose appearance for each sticky note: title customization (background color, font), body customization (background color, font), size customization (manually, zoom feature). Free Sticky Notes resides in the Windows system tray menu for quick and easy access to PC sticky notes and program features. Ability to create PC sticky notes with different priorities, hide sticky notes or place them on the desktop, hide note's body and use transparency...";
fDesc[11] = "manage, rule, and memorize the priority of tasks running on your machine. Apart from displaying processes in much cleaner detail, the program makes it possible to create rules to indicate in which priority a program must be carried out, and even which processors it can use";
fDesc[12] = "interface lists all the running processes on the system for you, so you can see the use of resources that each one do.";
fDesc[13] = "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[14] = "changes the process priority assigned to the different applications running simultaneously, in such a way that the active application gets the “high” priority level.";
fDesc[15] = "application’s request in a high level so it gets more CPU processing time. In other words applications with lower priorities can not be activated until higher priority operation terminates; but TurboCPU forces the execution of the processes to highest priority.";
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 = '...';
}
}