var fDesc=new Array();
fDesc[0] = "Stormwater Studio is a program for modeling storm sewer systems. It features automated design & analysis, energy-based HGL calculations, automatic flow calculations by the Rational method, built-in IDF curves, and user-definable design constraints. This application is quite easy to use; you can either draw your pipe system import lines from CAD file.
Stormwater Studio can simulate and provide results your "What-if" questions; you can get results of changing your pipe dimensions, branches, etc.";
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 = '';
}
}