var fDesc=new Array();
fDesc[0] = "Flowel provides the latest calculation methods, an optional fluid properties package and an intuitive interface that insulates the user from the complexity of flow calculations.
Every calculation in Flowel is verified against an independent source to ensure accurate and correct implementation.
You can be confident that you will get the right number when you are using Flowel as your sizing software package.";
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 = '';
}
}