var fDesc=new Array();
fDesc[0] = "MIDUSS is Windows-based software that helps you to engineer complex drainage networks to convey flow hydrographs from single event storms.
Features::
- generate hydrographs using a variety of built-in hydrologic models
- design a network of pipes, channels, culverts, ponds, infiltration trenches, cascading pipes, diversions - all with preliminary sizing done automatically and flood routing where appropriate
- use interactive design and immediate feedback to quickly optimize each element as you progress downstream
- use automatic mode to analyze and adjust your completed design under more severe storms
- concentrate on engineering; robust error detection and step-by-step prompts are provided throughout
- import/export hyetographs or hydrographs at virtually any stage
- feel good about your investment: we offer competitive software pricing and on-going updates and support
- get going fast with detailed Reference and Tutorial manuals as well as free audio-visual lessons
- feel assured we know what we're doing - MIDUSS is 20 years on the market and still going strong";
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 = '';
}
}