var fDesc=new Array();
fDesc[0] = "WinGslib is toolbox of Geostatistical software algorithms written for Windows 95/98/NT. It provides a front-end to all the GSLIB programs.
Available tools:
- Data manipulation
- Change Coordinates System
- Cell Declustering
- Normal Score Transform
- Normal Score Back-Transformation
- General Transformation
- Markov-Bayes Calibration
- Histogram Smoothing
- Scattergram Smoothing
- Postscript plots
- Histograms (frequency or cumulative)
- Scattergram
- Q-Q and P-P Plots
- Location Map & Cross Validation
- 2-D Map and Cross-section
- Bivariate Probability Density Map
- Variogram Plot
- Variograms
- Regularly Spaced Data
- Irregularly Spaced Data
- Variogram Map
- Indicator Variogram Computation
- Variogram file from model
- Kriging
- 2D Kriging
- 3-D Kriging
- 3-D Cokriging
- Indicator Kriging
- Simulation
- Monte Carlo Drawing
- LU Simulation
- Sequential Gaussian Simulation
- Gaussian Truncated Simulation
- Probability Field Simulation
- Boolean Simulation
- Sequential Indicator Simulation
- Simulated Annealing
- Post processing
- Add Coordinates
- Indicator Kriging Post Processing
- Processing of Multiple Realizations";
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 = '';
}
}