var fDesc=new Array();
fDesc[1] = "related to Creative Hardware, Drivers and Application Software. The Program identifies the devices connected to the computer and generates information which helps the product developers.";
fDesc[2] = "organizing and settings options on your screensavers. To properly speak, you only will be able to manage screensavers created by people from 3Planesoft.";
fDesc[3] = "stands for Virtual Network Computing, and it uses 2 small programs: Server and Viewer. The Server handles the service, and \"serves\" the access to the host computer. The Viewer, is used to access the computer where the server is installed and configured.";
fDesc[4] = "working state if it has been affeted by malware or if your 14 year old sister wanted to download the lastest Avril Lavigne screensaver from a unknown website. It can also protect public computers from corruption blocking changes to crucial system files.";
fDesc[5] = "Platinum is a software designed to hide your IP address to give you complete privacy. Every computer or connection has an IP address that defines a unique computer. When you are running a computer with hidden or changed IP, you are like invisible. Hide IP Platinum can do so.";
fDesc[6] = "allows you to remotely control another computer using the RFB protocol (remote frame buffer). The setup file installs two components: VNC Viewer used to work like client, and VNC Server that allows a Windows desktop to be accessed remotely using the VNC Viewer.";
fDesc[7] = "by Cable or DSL from threats and hackers. It includes four security services such as: Firewall, Application control, Internet lock, and Zones control.";
fDesc[8] = "The utility checks all the system to verify if there exists any kind of errors that affects the computer functionality and automatically corrects them. the utility also searches for spyware and adware. If you want, the program can monitor your computer in the background in real time.";
fDesc[9] = "with the work of administration, the hassle of transferring files, backups and sharing content; Windows HomeServer attacks all these fronts.";
fDesc[10] = "of two parts: a client and a server. The server part should be installed on the computer to be controlled. The program protects itself with a password, and it encrypts all the packets transferred so that they cannot be intercepted or recorded.";
fDesc[11] = "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[12] = "Ignition gives you instant access to all your PCs, whether they are LogMeIn Free, Pro or IT Reach computers. Your log in information and preferences are stored securely, enabling instant access from anywhere without having to remember all of your passwords.";
fDesc[13] = "program enables you to protect any file or folder with a password. You can also use the program with multiple user accounts. You can also restrict Internet access from your PC with a single click using this application.";
fDesc[14] = "recovered from your PC after they have been deleted. SecureClean is designed to provide every user with the highest level of personal privacy protection by finding and overwriting old data, making it impossible to recover.";
fDesc[15] = "a modern interface, you can gain access to all the complex functions associated to the optimization of your hard disk.";
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 = '...';
}
}