var fDesc=new Array();
fDesc[0] = "FEMtools is a solver and platform-independent CAE software program providing advanced analysis and scripting solutions in the areas of:
- Structural static and dynamics simulation
- Experimental modal analysis
- Verification, validation and updating of FE models for structural analysis
- Design optimization (topology, shape, size, material)
- Robust design (probabilistic structural analysis)
- CAE process integration and automation
- Structural health monitoring and evaluation.";
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 = '';
}
}