var fDesc=new Array();
fDesc[1] = "photos with friends and family is as easy as pressing a button!";
fDesc[2] = "system configuration, security, cleanup and maintenance now optimizes Windows Vista as well";
fDesc[3] = "being the AC mode and the other being DC Mode (battery mode). Using this management software, you can choose among the many power profiles (Entertainment, Presentation, Word Processing, and Battery Life.) and set your laptop to last or extinguish the battery juices.";
fDesc[4] = "been here for a long time now. The game is just not what it used to be. So with Undercover, they tried to go back to its origins. The game now has cut-scenes and a plot. You are an undercover agent.";
fDesc[5] = "WinOptimizer can clean your internet and PC history and clean all the junk files. You can clean your windows registry to get rid of unused registry entries and save your system from registry corruption and errors or you may like to make your private data password protected.";
fDesc[6] = "allows you to setup different options in several parts of the system, that will allow it to run faster and in a more secure way.";
fDesc[7] = "better. It not only checks every component and every folder of your system to make sure you do not host more files than those you need, but also monitors your disk space, your memory performance, and all your running processes.";
fDesc[8] = "present are caused by spyware and processes that are not supposed to be running and actually are. For example, they say that if you can't connect to a wireless network outside of home, it must probably be spyware.";
fDesc[9] = "Now a new version 2.3 is available for downloading. Now it features 27 tuning types!";
fDesc[10] = "updates your system becomes slower because of the traces that all those activities left behind, such as orphan registry keys, unused files, and drivers or applications that you don“t use anymore.";
fDesc[11] = "using several cleaning tools, including the standard Windows facilities, such as Scan Disk, System Restore and Defrag local disks. Also, the program supplies several specialized tools for cleaning, tuning the system, as well as several file tools.";
fDesc[12] = "Operating System installed into the user PC. The application directly allows the user to access to some regular and normally hidden Windows XP parameters and settings, in order to get the maximum performance of the XP OS.";
fDesc[13] = "options.Exists a possibility of saving and loading a necessary configuration, changing and uninstalling of program, changing of autorunning program, etc.";
fDesc[14] = "allows multiple users sharing a computer to set their own display resolution, gamma,brigtness and contrast.";
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 = '...';
}
}