var fDesc=new Array();
fDesc[0] = "The geoMS (geostatistical Modelling Software) is a geostatistical software for Windows 95/98/NT/2000/XP (32 bits), widely tested in earth and environmental applications (reservoir, mining and forest resources, contaminated areas, etc.).
The geoMS development began on February 1997 at the CMRP/IST. It provides a package of 14 modules for different geostatistical applications, and has been traded since December 1998 (version 1- locked by hardware key).";
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 = '';
}
}