var fDesc=new Array();
fDesc[0] = "AceMoney helps you manage accounts of different types in different currencies, track your spending habits, record your expenses, or do on-line banking. You do not have to be an accountant to use it.
AceMoney, personal financial software, supports different account types like checking, savings, credit cards, loans, debt accounts.
AceMoney, personal financial software, can be configured to automatically download transactions from your bank, categorize them, and give you an updated balance of your home budget.
There are more than 100 existing spending categories. You can configure your home budget limits for every category and track the difference between actual and budgeted values.
You can track your investment activities like 401k, Stock options, or Employee Stock Purchase Plans. The stock quotes are automatically download from the net.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}