var fDesc=new Array();
fDesc[1] = "in-built disk defragment tools which actually work but Smart Defrag works even more faster and uses advanced technology to speed up your disk drive and processing.";
fDesc[2] = "advantages of the new enhanced user interface. In addition, virtually anyone, anywhere can intervene in the review process with Autodesk Design Review, the free integrated solution available to consult, write and revise designs electronically.";
fDesc[3] = "Program often can not completely uninstall some applications and broken registry keys. Revo Uninstaller is a better and easier way for you to completely uninstall any unneeded application that standard Windows Add/Remove Program can't remove.";
fDesc[4] = ", e-mail and web sites. 2- System Security by monitoring all activity in our PC, 3- Online Security against internet fraud and network attacks.";
fDesc[5] = "possible to enter My PC, My Net places, My documents, My music, My images, the Control Panel, the Recycle WasteBasket, as well as the configuration itself and the developer web site (Punk SOftware).";
fDesc[6] = "supports several languages. Running in the MS Windows environment, its use is governed by GPL License. Based on a powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher execution speed and smaller program size. By optimizing as many routines as possible without losing user friendliness, Notepad++ is trying to reduce the world carbon dioxide emissions. When using less CPU power, the PC can throttle down and reduce power consumption, resulting in a greener environment.";
fDesc[7] = "seventh delivery of the Grand Theft Auto saga. The game contains new and numerous improvements over previous releases, but with the same spirit that characterizes this saga of controversial video games.";
fDesc[8] = "all about: destruction. The game features a single player campaign that allows you to follow the story of Nicko, an illegal immigrant who comes to America in search of the American dream.";
fDesc[9] = ", for detecting long email attached files being downloaded, download processes taking too long, and to alert the user when unespected Internet or network activity takes place. When there's no Internet or network activity, it hides itself to the system tray.";
fDesc[10] = ", easy, and high-quality backups. Auto Gordian Knot is a great tool designed for people who know very little (or nothing) about video conversion and want to create videos for their standalone or PC in a few clicks of a mouse.";
fDesc[11] = "Manager, Download Manager, and more. You can search direct by drag text in browser. The other way, you also can add special search button to search bar.";
fDesc[12] = "StartUp Tuner 2 will detect even those that do not want to be found and will give you the chance to deactivate their auto-start entry, or uninstall the whole program if you wish.";
fDesc[13] = "games nowadays. This game may be old but it has lost none of its entertaining value that catapulted DMA Design (now Rockstar Games) into the successful developing company it is now. Give it a try, you will enjoy it.";
fDesc[14] = "second 3D game in the Grand Theft Auto Saga. As Vice City was developed after Grand Theft Auto III, the game follows a very similar design, but with several improvements in comparison to its predecessor.";
fDesc[15] = ", hibernation, suspention, or shutdown in very few steps. It is also a tool which enables you to clean up the PC every time the shutdown is carried out.";
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 = '...';
}
}