var fDesc=new Array();
fDesc[0] = "ARGUS Valuation - DCF™ is the industry standard commercial real estate cash flow projection, transaction analysis and asset valuation solution.
For over 20 years, ARGUS Valuation-DCF™ has empowered agents, investors, lenders and other real estate professionals to spend more of their valuable time building fortunes, not spreadsheets. ARGUS Valuation-DCF is currently available in German, French, Spanish, Chinese and Japanese, and incorporates many local valuation methodologies.";
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 = '';
}
}