var fDesc=new Array();
fDesc[0] = "The Datgel Rock Mechanics Tool gINT Add-In allows you to rapidly classify zones of material in your investigation data.
Based on a user defined system you can streamline the classification of materials and the interpretation is written to a database table. The classification can be displayed on reports and used for 3D modelling.
The classification system is divided into two sections. The first allows the user to define the name of their classification and specify up to three tables (the parameters) from their database that they want to use for their classification. The second section allows the user to define a range (the zones) for each parameter that will determine the classification of the material.";
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 = '';
}
}