var fDesc=new Array();
fDesc[0] = "Flamingo enables rapid sizing of gas and oil pipes in a wide range of fuels and pipework materials. Calculations also include consumption rate and pipe weights, expansion and heat gains/losses.
Flamingo operates in either metric or imperial units, using a variety of calculation methods, and with international pipe data. Additional user-defined pipes can be added.
Pipe sizing data can be logged and printed.";
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 = '';
}
}