var fDesc=new Array();
fDesc[0] = "myBudget - a free program for conducting the family budget and home accounting. Provides an easy and convenient way of accounting for daily revenue and expenses.
Features:
- Easily record revenues and expenditures by category
- Viewing statistics in tables and graphs
- Fast search and filtering data
- Optimization of repetitive
- Works in Windows, Mac, Linux";
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 = '';
}
}