var fDesc=new Array();
fDesc[0] = "MFSizing is a customized valve- and actuator-sizing program designed to be used with the Master Flo product line-It is suitable for Microsoft Windows 95 or higher operating systems-The software package includes an installation wizard.
The algorithm on which MFSizing is based has been developed according to the ISA S75.01 specifications for control-valve sizing-Calculations include the following:
-Master Flo valve sizing and coefficient of valve capacity (Cv).
-Pressure drops across the specified valve size at various flow conditions.
-Flow rates based on valve size, Cv, and pressures.
-Sizing for Master Flo pneumatic piston, hydraulic piston, and rotary stepping actuators.";
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 = '';
}
}