var fDesc=new Array();
fDesc[0] = "Apex Software was actually born over 22 years ago out of a fee appraiser office, the result of ongoing struggles with inefficient hand-scribbled floor plan sketches, inaccurate area calculations, and the drudgery of double data entry. Since then, Apex has set the standard in sketching and is now used by over 90% of fee appraisers.
Main Features:
- Windows® 7 Compatible
- Photometrics Takes Sketching to the Next Level
- Draw Duplexes or Multi-Family Homes in Half the Time
- Now Clone an Area with All Interior Walls, Symbols, and Text Labels
- New Easy to Use Interface
- Multi-line Split Area
- Draw More Easily With Your Mouse Than Ever Before
- Save Your Sketch as an Image";
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 = '';
}
}