var fDesc=new Array();
fDesc[0] = "MatCalc stands for ‘Materials Calculator’ and it is a software package for computer simulation of the kinetics of microstructural processes. The MatCalc precipitation kinetics module is based on a new model for the evolution of precipitates in multi-component, multi-phase environments. The MatCalc microstructure simulation module combines spatial effects of long-range diffusion with local precipitation simulation or equilibrium analysis.";
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 = '';
}
}