var fDesc=new Array();
fDesc[0] = "Money Manager Ex is a free, open-source, cross-platform, easy-to-use personal finance software. It primarily helps organize one's finances and keeps track of where, when and how the money goes. It is also a great tool to get a bird's eye view of your financial worth.
Money Manager includes all the basic features that 90% of users would want to see in a personal finance application. The design goals are to concentrate on simplicity and user-friendliness - something one can use everyday.
Money Manager Ex runs on Windows and Linux and Mac OSX.
Main features:
- Intuitive. Simple, Fast, Clean
- AES Encryption Support
- Maintain checking, credit card, savings, stock investment accounts
- Budgeting
- Maintain and Track Fixed Assets with depreciation
- Reminders for recurring Bills and Deposits
- Simple one click reporting
- Cash Flow Forecasting
- Graphs, Piecharts
- Does not require an install. Can run from a USB key.
- International language support (Available in 24 languages)
- Import data from any CSV format, QIF [ Microsoft Money ]
- Printing, Exporting to HTML, CSV
- Non-Proprietary SQLite Database
- Read more in the Features Page.";
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 = '';
}
}