var fDesc=new Array();
fDesc[0] = "This software inverts resistivity and IP data acquired with electrodes arranged in boreholes and/or on the surface and presents a 3D volume of inverted resistivity data with advanced volume rendering technique.
The final resistivity or IP image-volume can be rotated in any orientation, zoomed in and out, and translated to anywhere inside the image window in order to see the volume of interest in detail.";
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 = '';
}
}