var fDesc=new Array(); fDesc[0] = "RenTrac is an app that allows you to track and manage your properties.

Main features:
- Manage an unlimited number of tenants.
- Filter the tenant list based on property and status.
- Write contracts and export to a contract template.
- Maintain tenant accounts and generate statements.
- Keep notes on each tenant.
- Manage multiple properties.
- Facilitate multiple units per property.
- Facilitate multiple rental "spaces" per unit.
- Keep notes on each property.
- Record income and expenses on each property.
- Setup recurring property expense entries.
- Log and track maintenance items."; 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 = ''; } }