var fDesc=new Array();
fDesc[0] = "JMAG-Designer is a simulation software for electromechanical design striving to be easy to use while providing versatility to support users from conceptual design to comprehensive analyses.
Main features:
-Material Database
-Electromagnetic steel sheet
-Core database for inductor
-Permanent magnet
-Automatic mesh
-High quality with minimum mesh
-Motion
-Lamination of steel sheet
-Skin depth
-Fast and Efficient
-Parallel solver
-Section analysis
-Iron loss calculation
-Inductance calculation
-Intuitive operation
-Multiple models/studies management
-Diagnosis of CAD model
-Mesh Quality Check
-Monitoring during analysis
-Context sensitive Help
-Self Study e-Learning System : JMAG-SLS
-Application notes";
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 = '';
}
}