var fDesc=new Array();
fDesc[0] = "It's a potent collection of 16 modules, each with lots of valuable features and options that you would only hope to find in programs costing a great deal more. This is a must-have tool for anyone in real estate or finance.
-Monthly Payment
-Amortization Schedule
-Loan Spread
-Future Values
-Depreciation
-Discounted Cash Flows
-Capitalization Rate";
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 = '';
}
}