var fDesc=new Array();
fDesc[0] = "Optimizer Suite is specialized Rectangular Nesting Software for nesting of rectangular cut pieces on rectangular sheets.
Main Features:
- High speed operation and robustness
- Simple User Interface
- Multiple Sheet & Cut-Piece varieties for a single optimization process
- Maximum Yield optimization feature to minimize material wastage
- Minimum Layouts optimization feature to minimize the number of cutting patterns generated so as to minimize the number of machine settings
- Support for machine Blade length
- Support for Tolerance helps in achieving a greater material yield
- Assists in purchasing, planning and estimating
- Facility to print labels for the Cut-Pieces
- Summary and detailed reports with layout drawing
- Detailed information about each layout
- Alternate arrangement of cut-pieces within sheet if possible";
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 = '';
}
}