var fDesc=new Array();
fDesc[0] = "Fire Flow Tester Software is a software product that helps you perform fire flow tests to determine water availability for fire sprinkler systems, fire fighting, city planning and to achieve favorable ISO ratings.
Features:
- Collect hydrant and fire flow data using our easy to follow fire flow work order form.
- Enter collected data with ease into the system.
- Automatically calculates predicted flow.
- Assigns NFPA Class and color code.
- Report in graph format or comparative lists.
- Use with the Hose Monster®, Pitotless Nozzle™ or other flow devices.
- Data is stored in MS Access™.
- Customize our reports by exporting to Excel.
- Networkable. Data can be stored on your server.
- Additional use licenses are available at a discount.";
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 = '';
}
}