var fDesc=new Array();
fDesc[0] = "Real Estate Analysis Software was designed to make your next property purchase your most profitable.
Property investments are often very expensive purchasing decisions. Wouldn't it make sense to purchase a low cost real estate investment analysis software package which could save your thousands if you made a bad property investment decision?
Main features:
-Quickly determine your pre and post tax cashflow
-Determine your expected cash return, cap. rate, LVR, DSR etc.
-Analyse your entire portfolio
-Directly compare property deals against each other to find the best
-Compare the expected returns against your goals
-Perform extensive 'What If' scenarios
-With customizable tax rates, stamp duty/transfer tax rates etc, this software can adapt to your environment.";
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 = '';
}
}