var fDesc=new Array(); fDesc[0] = "The Duct Flow program is a handy tool for calculating the air flow parameters in ductwork. It gives the intermediate velocities, velocity pressures, static pressures and a running total of the static pressure for a ductwork path. The ductwork path can be the whole path or just a portion of the path. By comparing path portions the program locates the critical path in a multi-branch system. The ductwork path or duct route is assembled as a list of duct items on a spreadsheet like grid."; 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 = ''; } }