var fDesc=new Array(); fDesc[0] = "Overview of Tank Calculator
Allows tank operators to input the Tank Diameter, Tank Length, and current Product Levels to determine the Gross Product Volume in the tank.
Tank shapes can be either Flat Ended (steel), Cylindrical (fiberglass), or Vertical (Aboveground). The program assumes that the ends of cylindrical shaped tanks are true hemispheres.
Users can select between a variety of English and metric units for lengths, volumes, and temperatures.
Tank Chart Generator Utility generates tank charts at a user specified increment. Charts can be printed out directly from the software."; 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 = ''; } }