var fDesc=new Array();
fDesc[0] = "AgriSolutions AgManager accounting software was designed specifically for agriculture and works well for small business. AgManager® meets the ever-changing financial management needs of today’s business manager. AgManager is fully customizable to adapt to any operation allowing owners to effectively manage their profits.
-Available modules in AgManager:
-General Ledger
-Balance Sheet
-Managerial Accounting with Standards
-Farm Financial Standards Reporting
-Non-Standards Managerial Accounting
-Financial Forecast (Budgets)
-Payroll
-Multi-User
-Trend Reporting
-Tax Reporting
-Raised Inventory
-Purchased Inventory
-Accounts Payable
-Accounts Receivable
-Entity Consolidation";
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 = '';
}
}