var fDesc=new Array();
fDesc[1] = "your system as well handles innumerable tasks.This multi-functional tool is exclusively designed to configure your Notebook or Desktop for functioning more smartly.";
fDesc[2] = "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[3] = "and workstation models and operating systems. HP Credential Manager 2.1 provides an interface to manage identity, credential, and multi-factor authentication through the HP ProtectTools Security Manager.";
fDesc[4] = "connections passwords, .NET Passport accounts, passwords for wireless network, remote desktop, InfoCard PIN, etc.";
fDesc[5] = "place. Bitobit Mithril Password Manager 1.8 generates safe passwords in just a click guarantying that none of the users’ data is ever hacked or cracked.";
fDesc[7] = "allowing the users to sign these files. It can also sign all other file formats in E-Lock Proprietary format";
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 = '...';
}
}