var fDesc=new Array();
fDesc[0] = "Software planning allocation of rough diamond.Features:
- Detecting the most profitable option of rough marking.
- High precision estimation of future diamond weight, position of inclusions in future diamonds. Observing real and imaginary inclusions.
- Automated search for the largest possible diamond with respect to parameters and inclusions, estimating mutual location of the future diamond and inclusions with precision of at least 100 micrometers.
- Various cut shapes: ROUND diamond, MARQUISE, PEAR, EMERALD, FLOWERS, PRINCESS and others.
- Calculations of inclusion positions Dared on refraction property of diamond.";
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 = '';
}
}