var fDesc=new Array(); fDesc[0] = "Flow Health is an application designed to assist in the assessment, design and management of river flow regimes. Its main purpose is to provide a score for hydrology in river health assessments, but it can also be used as a tool to assist environmental flow assessment.

Main functions:

- analyses time series of flow data based on a comparison with a reference condition.
- automatically produces the minimum monthly flow regime that has a Flow Health score of 1.
- it can be used interactively to design a monthly flow regime, with continuous updating of Flow Health indicator and overall scores."; 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 = ''; } }