var fDesc=new Array(); fDesc[0] = "ITScap is a tank capacity chart program that calculates the volume of vertical tanks and horizontal tanks with flat or dished heads, level or at a slope. Dimensions may be in inches or millimeters.

Main features:

- Vertical tanks.
- Horizontal rectangular tanks.
- Horizontal rectangular tanks placed at a slope.
- Horizontal cylindrical tanks with flat heads, dished only heads, or flanged and dished heads.
- Horizontal cylindrical tanks placed at a slope with flat heads, dished only heads, or flanged and dished heads.
- Use inches and gallons or millimeters and litres.
- Calculate volumes based upon incremental depth.
- Calculate depths based upon incremental volume.
- Print charts for inches of depth in decimal or fractions."; 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 = ''; } }