var fDesc=new Array();
fDesc[0] = "FAssistant is a neat and efficient application that manages and tracks income from different sources, salary income, part-time job income, income from rent etc.
Maine Features:
- Manage and track expenses you do on your own defined categories
- Manage and track the money you borrow from or lend to your friends, colleagues or roommates
- Manage and track the money spent in a group of people on sharing basis
- Manage and track your bank accounts, fixed deposits(CDs) and associated transactions (deposit, withdrawal, interests earned), start date, maturity date, interest rate etc
- Manage and track your investments on stocks, mutual funds and associated transactions, dividends, earnings (profit/loss), expected earning, complete stock analysis in % as well as actual numbers.
- Maintain your stock, mutual fund or 401k portfolio to get the very detailed analysis of your investments.";
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 = '';
}
}