var fDesc=new Array();
fDesc[0] = "FLIR BuildIR is a dedicated and flexible software for advanced analyses of building related applications.
You have access to report templates for energy loss / cost savings potential, air infiltration, moisture and insulation deficiencies. You can assess the scope of damage/problem and increase the speed and quality of your reports. You can quantify geometrical areas and use the panorama tool to stitch images of large objects together.
Features:
- Image grid/area quantifying function
- Panorama/ image stitching tool
- Energy cost calculator
- Customized building report templates
- Image editor
- Sensor/data logging tool";
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 = '';
}
}