var fDesc=new Array(); fDesc[0] = "The program CONEFALL is designed to estimate roughly the potential rock falls prone area.

The principle of the program is rather simple. A block can propagate if the slope is sufficiently steep. Physically consider that if the slope is steeper than a limit jp, then the block accelerates. If it is lower, it decelerates.
Using the previous assumption, a block can propagate from its source to the point of intersection of the topography with line starting from the source point making an angle jp with horizontal. The space where a block can propagate from a grid point is located within a cone of slope jp with a summit placed at the source point"; 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 = ''; } }