var fDesc=new Array();
fDesc[1] = "Download Manager will let you have full control over your downloads, accelerating download speed to squeeze your bandwidth.";
fDesc[2] = "Component of Acer Empowering Technology • eData Security Management • eLock Management • eNet Management • ePower Management • ePresentation Management • eRecovery Management • eSetting Management";
fDesc[3] = "The System Information contains seven TABS for the Video, Audio, Network, Processor, Memory, Motherboard and BIOS information and Summary of all the hardware on the computer. The Boot Options allows the change of Boot order.";
fDesc[4] = "browser to be used instead Internet Explorer, Mozilla, FireFox, Opera or Safari. But the features really important are: online profile storage, mouse gestures, built-in AD/Pop up blocker, privacy control and other more features. Avant Browser runs in Windows platforms.";
fDesc[5] = "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[6] = "for RAR/WinRAR (2.xx and 3.xx) archives. This incredible program includes the following modes to recover the passwords: \"brute-force\" attack, dictionary-based attack and dramatically fastest \"Booost-Up\" attack.";
fDesc[7] = "remember only one ID and password. When it is used with an optional biometric reader, like a fingerprint reader, you will have no need to remember passwords.";
fDesc[8] = "or Excel documents, Windows or Outlook Express logins that you forgot or you never knew. The program works through a step by step wizard that will ask you every data needed to retrieve the password.";
fDesc[9] = "simple way. You can put all your passwords in one database, which is locked with one master key or a key file, so you only have to remember one single master password or select the key file to unlock the whole database.";
fDesc[10] = "passwords and these passwords are saved behind asterisks like these ****** in order to protect your passwords from prying eyes. This function makes working with your programs easier and more comfortable. But, as you don't need to write your passwords anymore, you eventually forget them.";
fDesc[11] = "is actually the opposite. Sometimes, we forget the passwords we set for our password-protected RAR files, and there is one way to do it. Since there is not a way to simply deduct the password of a RAR file directly, this application uses two methods: brute-force...";
fDesc[12] = "illegal tool, but it is actually the opposite. Sometimes, we forget the passwords we set for our password-protected ZIP files, and there is one way to do it.";
fDesc[13] = "protects the users passwords even during viral attacks on the system. It boasts to have the best security by using the yet to be cracked Rijndael 256 algorithm. This certainly boosts the confidence when one views the product for first time.";
fDesc[14] = "many attack schemes to recover your passwords like Common dictionary attack and English dictionary attack with more then 75000 password, Brute force attack with more then 875000 passwords, Brute Force attack scheme 1 and 2 with more then 2939000 passwords etc.";
fDesc[15] = "all your passwords in one database, which is locked with one master key or a key file, so you only have to remember one single master password or select the key file to unlock the whole database.";
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 = '...';
}
}