var fDesc=new Array();
fDesc[1] = "login names, user names, alias, etc. and auto-fills all the forms when enter a log-in page, or when paying or shopping over the Web. All the sensible information and data are protected by means of 128-bit AES encryption process and saved on the user PC.";
fDesc[2] = "application and receive feedback almost immediately. When you start adding statements and transactions, the application will gather that information and draw reports for you.";
fDesc[3] = "expense and income and avoid over-draft. Control your credit cards, bank accounts and cash transactions. Multi currency, multi language, PDA's support.";
fDesc[4] = "using your credit card statements. Simply match your transactions to the categories provided, then use the tools to group and sort the information.";
fDesc[5] = ", Inventory Control Payrol, Internals. Trace Estimates and job tickets. Inexpensive, flexiable and easy to use.";
fDesc[6] = "cookies, adbots, spybots, rootkits, browser hijackers, phishing attacks, backdoors and other malware threats.";
fDesc[8] = "card transactions using the using one of the largest and most secure Internet networks: VITAL(VisaNet) and pay only for your direct bank";
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 = '...';
}
}