var fDesc=new Array();
fDesc[1] = "optimizes system registry and other system files so that Windows can run fast and smoothly. The program creates a system restore point, in case something goes wrong during the clean-up.";
fDesc[2] = "physics algorithms which require amounts of simultaneous mathematical and logical calculations to make a simple game display. This is where NVIDIA PhysX Technology comes in.";
fDesc[3] = "picture quality even at high compression ratios. Xvid is similar to DivX, since it is an open source project, distributed under the terms of the GNU General Public License (GPL). That means that it´s free to use, and everyone can contribute to its development.";
fDesc[4] = "quality and premium performance. Today, Conexant offers a line of industry leading HD-Audio codecs, including marketing value-added Voice Processing Algorithms Digital Signal Processor (DSP) software, optimized for PC Motherboard integration for worldwide operation.";
fDesc[5] = "to its superior page layout algorithms, converted documents look exactly like the original with columns, tables, bullets and graphics.";
fDesc[6] = "under a master key (or a key disk) in one database.Therefore, you only have to remember one single master password or insert the key-disk to unlock the whole database, that´s encrypted using the AES and Twofish encryption algorithms.";
fDesc[7] = "incredible application completely scans disks and saves as much information as possible. What is more, the program uses a lot of different algorithms, which considerably increases the amount and quality of the recovered data.";
fDesc[8] = "Androsa FileProtector uses very strong encryption algorithms including AES - 256 bit / 192 bit / 128 bit, TripleDES 192 bit and DES 64 bits.";
fDesc[9] = "Microsoft Office Documents (MS Word, Excel, Access). It can perform brute force and dictionary attacks, and apply masks to ease the recovery process.";
fDesc[10] = "are visible like regular disks and the data stored in them can be encrypted by several algorithms. The data stored in them can be encrypted by several algorithms such as AES, Blowfish, Twofish, CAST, GOST, DES and others.";
fDesc[11] = "plug-in. The standalone application works independently from other applications and has the complete functionality offered by AKVIS Magnifier. On the other hand, the plug-ins allow certain photo editors to make use of the photo enhancement capabilities of the program.";
fDesc[12] = "analysis algorithms. It is designed for testing the quality of analog and digital paths of any of the common audio devices.";
fDesc[13] = "at you fingertips. The plug-in is your reverb solution for any professional studio. The ArtsAcoustic Reverb 1.2 is not based on the convolution or any other similar technology but using algorithms and new methods you have excellent and high quality results.";
fDesc[14] = "algorithms. It is able to compress and uncompress SQX, ZIP, ARJ, LZH, RAR, CAB, GZIP, TAR, UUE, ACE, JAR, BZIP and 7Z type of compression format files. It comes with a very attractive and user friendly interface which is fully customizable.";
fDesc[15] = ", variables, etc., with a separate provision for each for them. Constants add any text to the renaming template, text variables add a text line that can be updated before every processing, variables represent any limited part of the original file name or string";
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 = '...';
}
}