var fDesc=new Array();
fDesc[0] = "Bentley MicroStation is a powerful, accessible, and
interoperable CAD platform for the design, construction, and operation of the world’s infrastructure.
Used as a software application, MicroStation turns ideas into reality. It provides immersive interaction with 3D models and 2D designs to confidently produce precise drawings, information-rich 3D PDFs and 3D plots.";
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 = '';
}
}