var fDesc=new Array();
fDesc[0] = "Fans Direct is is committed to providing tools that make the task of selecting the appropriate fan as simple as possible. Chicago Blower Select is a user friendly software application that is available for instant download and has an in-built tutorial to get you started.
Main Features:
- Easy, user-friendly interface
- Automatic calculations of temperature, altitude and density
- Show multiple duties on one selection curve
- GA drawings at the click of a button
- Noise calculations at any desired distance
- Casing breakout noise information";
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 = '';
}
}