var fDesc=new Array();
fDesc[0] = "Supports on land, underwater and cross-borehole surveys
Supports the Wenner (alpha,beta,gamma), Wenner-Schlumberger, pole-pole, pole-dipole, inline dipole-dipole, equatorial dipole-dipole, gradient and non-conventional arrays.
Supports exact and approximate least-squares optimisation methods
Supports smooth and sharp constrasts inversions
Supports up to 16000 electrodes and 21000 data points on computers with 1GB RAM
Seamless inversion of very long survey lines using sparse inversion techniques";
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 = '';
}
}