var fDesc=new Array();
fDesc[0] = "JMAG-VTB is a program equipped with a wide range of scenarios including analysis 'know-how' and simplifies the operation of complex analyses including multiphysics.
Features:
- You can run a detailed and complex analysis easily with a scenario prepared in advance.
- You can effectively apply calculation resources by managing with the database.
- You are able to create your own reports by displaying a list of results (the Dashboard function).
- You may customize your own scenario that includes your analysis know-how!";
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 = '';
}
}