var fDesc=new Array();
fDesc[0] = "Trelis is a high-end, commercial-grade pre-processor for complex FEA and CFD simulation. It is based on the time-proven CUBITâ„¢ software from Sandia National Laboratories. For more than two decades, csimsoft and Sandia have co-developed CUBIT to do Sandia's really challenging simulation. Now, commercial and academic users can use the tool for their tough simulation problems.";
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 = '';
}
}