var fDesc=new Array();
fDesc[0] = "Midas GTS is a Geotechnical and Tunnel analysis System, based on state-of-the-art finite element and graphical technology.
Midas GTS enables the engineers to intuitively generate complex geotechnical models. Outstanding geometrical modelling and meshing features are complemented by powerful analysis capabilities and a fast Multi-frontal solver able to handle large 3D models.
Midas GTS has been scrutinized by a strict QA/QC system ensuring a high standard of quality. Midas GTS defines a new paradigm for tunnel engineering and geotechnical structures.";
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 = '';
}
}