var fDesc=new Array(); fDesc[0] = "Hydrosim V employs the kinematic method to compute overland runoff – generally accepted as being the most accurate mathematical representation of the rainfall-runoff process. Design rainfall can be generated based on regionalised parameters, such as Inland/Coastal Region and Mean Annual Precipitation. Rectangular, triangular and Chicago-type synthetic storm patterns are available. Alternatively, the user can input coefficients from standard IDF curves for synthetic rainfall, or else a user-provided hyetograph."; 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 = ''; } }