var fDesc=new Array();
fDesc[0] = "Estate Master Investment Appraisal (IA) is a user-friendly cash flow model designed for property valuation and investment analysis. IA calculates property purchase/sale values, and investment returns such as internal rate of return and net present value based on a comprehensive set of inputs.
It's intuitive and logical spreadsheet user-interface offers a powerful, yet easy to use IA model without the need to learn complex software programs.
What can it do ?
- Analyse multiple tenants and leases for investment properties
- Financially appraise a property’s purchase price using the industry standard Income Capitalisation and DCF methodologies;
- Estimate residual property value for acquisition purposes based on monthly discounted cash flows; and
Assess the feasibility of a property investment based on key performance indicators such as the Internal Rate of Return, weighted lease durations, initial and equivalent yields.
- Track capital expenditure such as major maintenance works and refurbishments.";
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 = '';
}
}