var fDesc=new Array();
fDesc[0] = "Budget Sheet Manager is designed to help family and small business owner track their income and expenses and plan their household budget or business budget ahead of time.
Main features:
-Easy to use: You fill two pre-prepared spreadsheets (Income Sheet and Expense Sheet) then everything is automatic.
-Reports include the following:
-Expense reports by category, subcategory, or item over a specific period of time.
-Income vs Expenses
-Account Summary
-Monthly expense report
-Budget Planner Sheet: A spreadsheet you can generate to plan your budget upon category or subcategory.";
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 = '';
}
}