var fDesc=new Array();
fDesc[1] = "Component of Acer Empowering Technology • eData Security Management • eLock Management • eNet Management • ePower Management • ePresentation Management • eRecovery Management • eSetting Management";
fDesc[2] = "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[3] = "can be protected using an user password, which will prevent you from ever opening the file if you don't have the password. They can also be protected using an owner password, which restricts several functions of the PDF file in question.";
fDesc[4] = "passwords for Yahoo messenger accounts, when they are stored on the user system. The application recovers stored user login data for the computer user. The program will diplay all the data about the user Yahoo accounts, as well as the user password, in an completely automatic and instant manner.";
fDesc[5] = "will diplay all the data and information about the user MSN accounts, as well as the user password, in an completely automatic and instant manner.";
fDesc[6] = "protected by user password, NT authentication, and one time password S/Key, MD5. The program allows to re-use Windows accounts that are already created. Accesses are based on IP addresses.";
fDesc[7] = "remember those passwords since Windows stores those for easing the login operations, in programs such as FTP or email client. Because of the security rules Windows applies, when entering a password, the input box only shows asterisks.";
fDesc[8] = "protected Adobe Acrobat PDF files, which have an \"owner\" password set, preventing the file from editing, printing, modifying the document, adding or modifying text notes, and AcroForm fields.";
fDesc[9] = "Password saves your user IDs and passwords you use to access your personal accounts of your favorite websites. Password Prime uses two mechanisms to protect your data from strangers: password protection when the program starts, and a system encryption to your database.";
fDesc[10] = "way (it depends how long passwords are). It has also Key search attack, which guarantees the decryption (the password length and complexity doesnt matter at all ) of PDF files that use 40-bit encryption";
fDesc[11] = "use, and a powerful application, using which you can set permissions, by providing owner and user password to the PDF files. The encrypting is done using the standard 40-bit or 128-bit supported by Acrobat Reader version 7.0 or higher versions.";
fDesc[12] = "account lists with information like account name, password, notes, URL and the like. Easy accesses to information, copy to clipboard or conversion to other formats are some of its important features. It also has a search option which filtered outputs satisfying the criteria obtained.";
fDesc[13] = "since Windows stores those for login operations (in programs such as FTP or email). Because of the security rules Windows applies, when entering a password, the input box only shows asterisks. Same as when Windows fills in automatically the password input box.";
fDesc[14] = "of forgotten or lost document passwords. Also, the application can be used for decrypting files with a known password, supporting 40-bit RCA and 128 RCA and AES decryption. This application doesn't need of any Adobe Acrobat program to be installed on the user system.";
fDesc[15] = ", online logins, security code for cellular phone, etc. User can manage all of them in a single place, encrypted, and protected by a general password which is the only one user has to remember. That password grants the user acces to all the stored sensible data.";
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 = '...';
}
}