var fDesc=new Array();
fDesc[0] = "MICROMINE is a toolbox of solutions that allows you to capture, manage and interpret critical mining and exploration data.
As an explorer, MICROMINE provides you with an in-depth understanding of your project so you can target prospective regions more accurately, increasing the chance of your project’s success.
As a miner, MICROMINE gives you easy-to-use modelling, estimation, and design tools to simplify your day-to-day design and production tasks.";
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 = '';
}
}