var fDesc=new Array();
fDesc[0] = "CAE Studio 5D Planner is the comprehensive 3D design and visualization environment with integrated plotting. It provides features such as:
- Visual mining sequence workspace combining use of automated rules and manually “linking” of activities
- Automatic evaluation of designs against a geological model for tonnes and grade reporting
- Live link between schedule and design environments for efficient and effective schedule auditing.";
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 = '';
}
}