var fDesc=new Array();
fDesc[1] = "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[2] = "something with your friends, family or relatives on your personal computer then most probably you select the option to save the password by the messenger so that you will not required to type your username and password each time to login to your account.";
fDesc[3] = "and may contain one or more files and folders. RAR have capability to password protect your RAR archives and it can also encrypt your sensitive files in RAR format. But RAR Key is a utility for recovering the password of password protected RAR archives.";
fDesc[4] = "Live password but do not remember the old one. Of course, you must be able to login with your messenger automatically without entering your password after clicking on the \"Sign-In\" button.";
fDesc[5] = "recover a lost or forgotten pasword from an encrypted zip archive. It doesn't matter whether if it was created using WinZip, PKZip or any other ZIP software or if it's a self-extracting Zip-archives (SFX); all are accepted.";
fDesc[6] = "Windows Security Accounts Manager (SAM), even if you have lost your password and cannot logon to your Windows account. This incredible application creates a bootable disk and enables you to remove a password for the specific user or to recover password hashes.";
fDesc[7] = "of passwords, achieving instant recovery of document and template protection as well as passwords to modify. It supports all versions including 2007.";
fDesc[8] = "3 clicks. Atomic PDF Password Recovery does not recovers the password needed to open a PDF file, it actually needs the password to remove limitation from a PDF file like, printing, editing, copy and other restriction.";
fDesc[9] = "protecting them with the password and encryption techniques of the compression utility then be careful about the password. If you forget the right password then your will not be able to extract your files without providing right password. In this situation you will require Zip Key utility.";
fDesc[10] = "simple you just have to execute de program and automatically the software will do an examination in your hard disk for all your possible passwords.";
fDesc[11] = "starting from 97 to XP immediately. The recovered password can be copied to the Windows clipboard with one click. The program has an easy user interface.";
fDesc[12] = "for MS Access database files (*.MDB) and user-level passwords stored in the workgroup information file (*.MDW). This incredible application automatically finds recently accessed *.mdb files and, if it is password protected, it displays the file name and its password.";
fDesc[13] = "secret data stored by Internet Explorer, such as magazine subscriptions, bank accounts, shipping and billing addresses, credit card numbers and much more.";
fDesc[14] = "whether the archive is a stand-alone or a multi-part archive, by means of dictionary attack. The program comes with a list of common words and a list of common passwords. The program can utilize multiple processors system and requires a small amount of ram for small archives.";
fDesc[15] = "forgotten the file's password, this program will be very useful for you. It doesn't matter if the password was entered by you or by any other user, you will still be able to find out the password and get the file opened thanks to this application.";
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 = '...';
}
}