var fDesc=new Array();
fDesc[0] = "CompCruncher is the next generation of appraisal software that procures statistically supportable appraisal. The computer-aided appraisal software puts the appraiser in complete control over the data analysis, hence allowing the appraiser to quickly produce supportable and accurate valuations.
Main Features:
- Order Screen: Defines the neighborhood of the subject property; inputs basic order information such as address, client and owner of the property; draws neighborhood boundaries
- Neighborhood Overview: Defines all 1004 MC characteristics plus a spatial display of data
- Neighborhood Statistics: Presents information on sales, listings, absorption and the general state of the market at the neighborhood level
- Neighborhood Trends: Demonstrates trends for sales and listings up to 12 months
- Regression Analysis: Provides market value driven by linear regression model for each value component; includes regression output statistics
- Comp. Sales and Listing Analysis: Displays comparables for sales and listings, automatically calculates adjustments for value components and provides a final indicated value based on comps
- Reconciliation: Presents the values returned from Regression, Sales and Listings Comps to allow the appraiser to determine a final value";
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 = '';
}
}