var fDesc=new Array();
fDesc[1] = "multiple currencies, track spending habits, record expenses, transfer among accounts and even do on-line banking.";
fDesc[2] = "and understand where your income goes. Expense Tracker can help you manage your expenses much more easily than the old pencil and paper method.";
fDesc[3] = "organize and manage all your personal finances quickly and in a very easy and intuitive way. This program is made to manage home accounting.";
fDesc[4] = "covers FIFA World Cup 2006. Also bundled useful 8 utilities like Scheduler, World Timer, Moon Phase, Shutdown timer, Chronograph etc";
fDesc[5] = "framework, which has made some great applications possible. Ora Time and Expense is one of those applications, which can be run in several different operative systems. It is also free. With Ora Time and Expense, you can track your expenditure with ease.";
fDesc[6] = "Automate Payroll with our New improved setup features.";
fDesc[7] = "home-based businesses as a recordof expenses for reimbursement, accounting, or tax purposes. The colorful, easy-t...";
fDesc[8] = "automation, project management and task management. Free downloadable and hosted (ASP) version.";
fDesc[9] = "Calendar, Tasks, Contacts, Notes, and Journal folders without the expense or expertise required by Exchange.";
fDesc[11] = "generates reports and invoices for printing or exporting. Includes the Universal Calculator. For Mac and Win";
fDesc[12] = "contractors, or self-employed individuals. Our software helps to record, organize, and manage all your tax deductible business expenses (vehicle expenses, home expenses, entertainment expenses, etc.). Software comes with several database templates. You can choose the one that best suits your personal or business needs.";
fDesc[13] = ", statistical analysis, expense averaging. Keep notes on individual transactions. Frequently used notes templates. Recurring items feature.";
fDesc[14] = "Systems.";
fDesc[15] = "you categories, make reports on chosen expenses types, export your financial management to MS Excel.";
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 = '...';
}
}