var fDesc=new Array();
fDesc[0] = "Commercial Rental Tracker Plus is a complete, affordable, easy-to-use, rental property manager software program for long term rental property management with which you can:
- Manage any number of units and owners. Commercial property management invoices can be generated for any time period, for your property owners.
- Organize all your rental activities, including tasks, contacts, and even appointments with this property management system.
- Automated Property Tax, Liability Insurance, expense and utility payment distributions.";
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 = '';
}
}