var fDesc=new Array();
fDesc[0] = "Cashco sizing is used in measurements of valves and regulators.
Cashco manufactures a broad line of throttling rotary and linear control valves, pressure reducing regulators, and back pressure regulators in line sizes from 1/4 inch to 10 inches and Cv ranges from .002 to 4,406. Models are available to handle slurries, cryogenic service, and corrosive fluids; to withstand high temperatures and pressures; and to maximize the reduction of fugitive emissions.";
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 = '';
}
}