var fDesc=new Array();
fDesc[1] = "financial tasks, to organize, and grow their businesses on the Internet. With its familiar Microsoft Office 2007 interface, this program is easy to learn, so you can be productive immediately.";
fDesc[2] = "passwords. This incredible program provides a unique password recovery method that guarantees successful password recovery regardless of password length.";
fDesc[14] = "easily and efficiently. Know where your money goes and stay in full control of your budget with Account Xpress.";
fDesc[15] = "again! Easily manage your automatic transactions with the schedule feature or use it to remind you.";
fDesc[16] = "can import and export data from/to other financial programs as well as Quicken. The utility helps to create reports and analyze various transactions, which could be generated by the in-built report generator.";
fDesc[17] = "set.";
fDesc[18] = "and their associated projects are tracked, and it is easy to generate invoices. Accounts Receivables ar...";
fDesc[19] = "favorite accounting package, including Quicken MS Money, or even Excel.";
fDesc[20] = "more than two swerves. Of course the time is limited, you must link them as soon as possible.";
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 = '...';
}
}