var fDesc=new Array();
fDesc[1] = "like customs buttons with gadget support, new tab page to access a new page, quick search box to navigate your web search faster, synchronized toolbar setting to access your information from any computer, and improved auto fill that allows you to have several profiles information.";
fDesc[2] = "management of home accounting. It allows working offline and online, in the latter mode the program updates balances and movements from your bank accounts. It runs only on Windows Vista and Windows XP Service Pack 2.";
fDesc[3] = "that of Internet Explorer, Smart Brow has its own features, such as the \"quick note\" panel for us to copy and paste (or write) anything we like; and a nice user interface, whose appearance (skin and/or color) can be easily changed.";
fDesc[4] = "fraud, identity theft, and so on. This program can search our files, web data, e-mails and attachments, and Windows Registry for any personal information that we may have stored and that can be used to cause us real damage.";
fDesc[5] = "in IE, Firefox, and Flock: your login credentials, credit card numbers, passwords, search terms, Java, Flash, PDF Forms, as well as your web email. It performs the encryption at the keyboard driver level and decrypts them in the destination application.";
fDesc[6] = "rules. You can choose between 14 different tile sets and 10 different background themes. A female voice will guide you through the game.";
fDesc[7] = "functional finance manager today. This program was developed to manage both business and personal finances. Using it you can control many accounts, credit cards, forthcoming payments, and so on.";
fDesc[8] = ", Discover, JCB and other major credit card numbers.";
fDesc[9] = "submitting the card number online. Credit Card Verifier can validate any VISA, MasterCard, Diners Club, Carte Blanche, EnRoute, American Express (AMEX)";
fDesc[10] = "Blanche, Diners Club, EnRoute, American Express (AMEX), Discover, JCB and other credit card numbers.";
fDesc[11] = "on you computer and erase it completely. This incredible program intended for probing the confidential information stored on your computer for its vulnerability to unauthorized access by hackers.";
fDesc[12] = "Credit Cre validates credit card numbers right on your PC without going on-line or transmitting sensitive information from your PC.";
fDesc[13] = "or plug-ins required.";
fDesc[14] = "application and receive feedback almost immediately. When you start adding statements and transactions, the application will gather that information and draw reports for you.";
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 = '...';
}
}