var fDesc=new Array();
fDesc[0] = "Output to Screen and/or to Printer in Tabulated Format. Data file capability for quick and easy work sessions.
Main features:
- Windows 98 and above format featuring Windows Input.
- Output to Screen and/or to Printer in Tabulated Format.
- Data file capability for quick and easy work sessions.
- User editable Pump Curves.
- US Customary or SI Units.
- Calculates Maximum Head (All Pumps On) and Minimum Head (All Other Pumps Off) Conditions.
- Plots System and Pump HEAD Vs. Q curves
- User Friendly - Just point and click - drop down menus and convenient toolbar.
Requirements:
- typical modern system using windows 98+
SLS (Sanitary Lift Station) - a small but powerful and professional software solution designed to calculates Maximum Head (All Pumps On) and Minimum Head (All Other Pumps Off) conditions and more.";
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 = '';
}
}