var fDesc=new Array();
fDesc[0] = "This Utility has over 50,000 combinations of various measurement units. Immediate conversion is provided for your input values.
Materials Compatibility:
Over 14.000 combinations of gasses and liquids are displayed with their affect on various materials.
Technical Glossary:
Thousand of technical terms at your fingertips.
Periodic Table:
Interactive periodic table. Clicking element gives general proprieties and its origin.
CV Calculator:
Has four option CV,Maximum Flow,Pressure Drop & Velocity for liquid and Gas media. After entering values on clicking convert button gives the calculated value.";
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 = '';
}
}