var fDesc=new Array(); fDesc[0] = "In this program you enter all the facts about the properties, enter the clients' personal details and requests, and as soon as matches are made, you have all the info to immediately and quickly contact your clients and get the ball rolling. Automatically send clients e-mail, along with pictures and floor plans, or automatically call or beep them.

This program also keeps track of unit rentals, sales, and commissions.
Find out things like how much each person earned each month.
It also keeps track of repairs."; 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 = ''; } }