var fDesc=new Array();
fDesc[0] = "IX1D is a 1-D Direct Current (DC) resistivity, Induced Polarization (IP), Magnetotelluric (MT) and electromagnetic sounding inversion program. Supports Most DC resistivity arrays, including: Wenner, Schlumberger Dipole-dipole Pole-dipole and Pole-pole arrays. Supports Resistivity only or Resistivity with IP measurements in terms of PFE, Chargeability in msec or Phase in mrad.
Supports Horizontal Coplanar, Vertical Coplanar and Vertical Coaxial Frequency-Domain Electromagnetic in-phase and quadrature measurements made versus frequency, coil spacing or instrument height. Measurements can be in percent or ppm of the primary field.";
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 = '';
}
}