var fDesc=new Array();
fDesc[1] = "computers, and allows maintaining maximum productivity and saving maximum of electric power. This utility adds the possibility to switch off some components for power saving in that way.";
fDesc[2] = "Truecrypt is not a yet-another-privacy-to ol, but it stands out from the rest by being open source and still providing one of the best encryption algorithms to secure the sensitive data. It is capable of creating encrypted volumes which can be mounted on the fly. It also has the ability to encrypt the system partition or any other partition, including portable drives.";
fDesc[3] = "This reliable utility gives the user the capability of updating and maintaining web sites through FTP (File Transfer Protocol). It is possible as well to upload and download files via SSL, TLS and SFTP, to and from FTP servers.";
fDesc[4] = "with an integrated online competition feature, thus maintaining the realism of pool championships in style of the real life.";
fDesc[5] = "create small, unwanted imperfections among image details known as 'noise' that can be reduced to create even better, more natural digital photos. Reducing noise while balancing image details, color, and light can increase the quality of virtually every digital photo. Dfine targets noise and unwanted imperfections that may be a part of your image and allows you to control and redefine image details. Perform noise reduction, JPG artifact reduction, and enhance color and light to create better photographic prints. Dfine adapts to your needs and the needs of each individual image. Target specific noise or selectively enhance the image with a variety of specially designed digital photographic features. Shoot, Dfine, Edit. Shoot your images, define details, and edit your images. Better digital images come from using the right tools at the right time. Prepare your digital images for the image...";
fDesc[6] = "solution for administrators and power users for maintaining the Windows registry.";
fDesc[7] = "convert any PDF document into a Microsoft Office Word file, Microsoft PowerPoint document, SharePoint Designer document, RTF file, AppleWorks document, HTML files and others, maintaining the original document layout and providing a completely editable document in the new file format.";
fDesc[8] = "These programs include the ones in your startup folder, Run, RunOnce (programs configured to run only once, like a setup program), and other Registry keys. It also has the feature of showing Explorer shell extensions, BHOs and much more. This is a really great program.";
fDesc[9] = "simply going to the desktop on your system. With this application organizing and maintaining your schedules now is an effortless process for you.";
fDesc[10] = "integrity — with no technical expertise required. Thanks to a true WYSIWYG authoring environment, content authors and contributors can edit or update any website or blog without having to learn HTML.";
fDesc[11] = "system and index all your files. When you open Disk Space Finder, it will scan those files and create graphs that tell you exactly how much space is used on your hard drive.";
fDesc[12] = "utilities to work with HTML, CSS, ASP, PHP and JavaScript. It checks syntax, displays highlighted text and includes a CSS editor.";
fDesc[13] = "list of entries on the left and the text editor window on the right. There are four tabs at top of the latter which take you to different writing modes. The Journal has different templates that you can use for several writing activities.";
fDesc[14] = "Plink (PuTTY Link) is launched in the background for effective monitoring of tunnels and if something happens to Plink then this software restarts it.";
fDesc[15] = "corporate web site, maintaining an off-site backup, maintaining web site mirrors, etc.";
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 = '...';
}
}