var fDesc=new Array(); fDesc[0] = "The Colorado Urban Hydrograph Procedure (CUHP) is an evolution of the Snyder unit hydrograph. It has been calibrated to the Colorado front range using of data collected by the U.S. Geological Survey beginning in 1969. Data from 30 sites, representing a full range of land uses in the Denver Metro Area, was used to develop empirical relationships between the input hyetograph and observed output flow. Further details on this study can be found in Appendix C. The resulting algorithms, named CUHP, use a concept called e ffective precipitation that accounts for volume losses, and a unit hydrograph that accounts for flow routing and basin size."; 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 = ''; } }