var fDesc=new Array();
fDesc[0] = "MulTex allows the determination and an vivid interpretation of textures.
Main features:
- This app incorporates a consistent database management.
- Pole figures can be used in small circle measurement grids of any density (regular or thinned).
- Simultaneously, any number of samples, crystal structures, measurement grids and pole figures is managed, i.e. file management by folders or directories is not necessary.
- Data from NJC Rayflex files (SEIFERT) can be accepted by pressing a button.";
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 = '';
}
}