var fDesc=new Array();
fDesc[1] = "Alt-Tab keystrokes have in Windows, with some additional features. You can customize the appearence of the program for each user, with different colors and fonts.";
fDesc[2] = "currently used applications. It also offers you many features such as a calendar, web search widget and a click. Object Dock allows you to fully customize the dock, its position and many options and effects.";
fDesc[3] = "your system as well handles innumerable tasks.This multi-functional tool is exclusively designed to configure your Notebook or Desktop for functioning more smartly.";
fDesc[4] = "your desktop. The application is platform independent so you can run it on all major operating systems: Windows, Linux and Mac OS X. The appearance can be customized with skins and you can even mix different skins together. It is possible to use Rainlendar with other calendar applications too. Rainlendar uses the standard iCalendar format to store its events and tasks so you can easily transfer them between applications. You can also subscribe to online calendars and task lists including the Google Calendar* and Remember The Milk* and edit your Outlook** appointments directly in Rainlendar.";
fDesc[5] = "all the processes running in our computer. It has never been so easy to detect suspected items, enable, disable, remove, or put them in quarantine. We are also allowed to view the security risk for each running process, CPU usage and more.";
fDesc[6] = "spreadsheet application; Presentations; the Visual Intelligence data analysis software; WordPerfect Lightning, a Web-connected note-taking app; and WordPerfect Mail for managing e-mail.";
fDesc[7] = "you to view detailed information about any process or activity on your computer in an untroubled way. This application will let you know the risk of using each program on your computer.";
fDesc[8] = "optimize our computer's overall performance and security. It features a user-friendly interface, which provides comprehensive information on our network traffic, CPU usage, and Memory usage, items on Windows startup, opened applications, running processes, services, and log report.";
fDesc[9] = "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[10] = "have experienced a system meltdown that leaves you with a frozen screen and nothing you can do about it. This application could be a solution. AntiFreeze is a last resort for making your system responsive again.";
fDesc[11] = "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[12] = "Informant 8.0 provides a calendar, contact database and task list. Pocket Informant 8.0 is completely customizable so we can choose the colours that match our windows mobile theme the best.";
fDesc[13] = "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[14] = "that goes on on your computer. It will monitor tasks and look for processes that are known to be malign. Then, it will allow you to act accordingly. You can stop, pause and quarantine processes.";
fDesc[15] = "times. Tasks included as standard in PC Inspector Task Manager are Logoff, Reboot, Remote Reboot, Shutdown, Remote Shutdown, but you can also add your own routines.";
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 = '...';
}
}