var fDesc=new Array();
fDesc[0] = "Make Ready Manager is a software for spreadsheets and workbooks.
- Specifically designed to handle your rental unit turn-over process.
- Simple to learn, easy to use, and efficient.
- Scheduling task assignments and workers is a breeze.
- View the status of your units at a glance with the Make Ready Board.
- Customizable windows, tasks, reports, and more to fit your needs.
- Works with many management/leasing programs or use as a stand alone.";
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 = '';
}
}