var fDesc=new Array();
fDesc[0] = "The 3E Plus® Insulation Thickness Computer Program is an industrial energy management tool developed by the North American Insulation Manufacturers Association (NAIMA) to simplify the task of determining how much insulation is necessary to use less energy, reduce plant emissions and improve system process efficiency.
The 3E Plus program can:
Calculate the thermal performance of both insulated and uninsulated piping, ducts and equipment
Translate Btu losses into actual dollars
Calculate greenhouse gas emission and reductions.";
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 = '';
}
}