var fDesc=new Array();
fDesc[0] = "The Grad601 is a single axis, vertical component fluxgate gradiometer comprising a data logger, battery cassette and either one or two Grad-01-1000L cylindrical gradiometer sensors mounted on a rigid carrying bar. Each sensor contains two fluxgate magnetometers with one metre vertical separation.
The system provides a good depth response with its one metre baseline, along with exceptional stability. This easy-to-use gradiometer is calibrated via simple push-button control.
Typical applications: • Geophysical surveying • Archaeological prospecting • Forensics • Pipe, cable and drum location • Unexploded ordnance (UXO) detection.";
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 = '';
}
}