var fDesc=new Array();
fDesc[0] = "Sargent's Drilling Utilities is a Freeware program that performs most of the well-related calculations that the "Man on the Rig" needs in his day-to-day work.
At the present time, the program uses OILFIELD UNITS only.
Main Features:
- Pull-down menus for easy definition of the drill string and the casing scheme.
- Editable tubular data base, for easy one-time addition of YOUR rig's particular tubular.
- Editable cement chemical data base, for easy one-time addition of YOUR cement chemicals (presently: Halliburton, BJ and Dowell).
- Navigation system consisting of a "Navigation Menu" and a "Main Menu" for easy navigation between the program's modules.
- Integrated data sharing - Define pertinent well configuration data on one screen, and it will be used in most other modules as well.
- Input check of user data entry - will warn you if you have entered invalid data.
- Automated "Bug Report" generator, for easy reporting (by email) of any bugs to me.
- Integrated Help File
- Print Menu, for easy selection of page(s) to print - either to printer or to file";
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 = '';
}
}