var fDesc=new Array();
fDesc[0] = "STRIP.LOG is the Lithological strip log drafting tool.
Features:
-Rapidly create well logs that are rich in data, including: ROP and Gas data, lithology and other symbols, engineering and geological descriptions, surveys, porosities, and grain sizes.
-Automatically import ROP, Gas and other data for gas detectors and EDR systems.
-Clear, precise, professional quality printed strip logs.
-Complete header information for the well, the operator, the geologist, cores, DSTs, plan, elevation, etc.
-Easy to reprint or make corrections.
-Export any data from the log.";
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 = '';
}
}