var fDesc=new Array();
fDesc[0] = "Echoview is a software package for hydroacoustic data processing, delivering powerful and flexible capabilities for water-column and bottom echosounder and sonar data processing.
Main features:
- Estimate the density and biomass of commercial and recreational fishes and other scatterers from your acoustic data via echo integration and echo counting.
- Understand the interaction of fish and other scatterers with their environment.
- Characterize and classify the nature of the bottom from echosounder backscatter measurements of the first and second bottom echoes.";
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 = '';
}
}