var fDesc=new Array();
fDesc[0] = "The latest Building Air Leakage Testing software package is simply FanTestic! One of the most advanced door fan testing packages on the market today.
Features
- Run manual and automatic tests
- Small and versatile XML data storage
- Reports in Microsoft Word (non customizable)
- Cost of air leakage analysis for heating and cooling
- Ventilation and natural air-change calculations
- Automatic software updates over the Internet (with subscription)
-Fully compliant with ASTM
- 1 yr software update subscription and E-mail tech support";
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 = '';
}
}