var fDesc=new Array();
fDesc[0] = "Cheewoo Nest1D can perform 1-dimensional high-speed automatic nesting to minimize remanent.
Followings are main features of this program.
1. Supporting maximum 65535 different sizes of the stocks and parts with unlimited quantities in a nesting calculation.
2. Providing 4 type of the packing options (minimize remanent length, maximize packing rate, limit remanent length, limit packing rate).
3. Performing high-speed calculation (e.g. performing time for 100 types of the stocks and 1000 types of the parts with i7-4930 CPU PC takes about 2.0 sec.).
4. Providing priority stock setting to adapt special condition for user's customized optimal nesting.
5. Supporting unlimited undo and redo for stock / part list editing.
6. Supporting add, remove, edit features on the stock / part list.
7. Providing remark column to add additional information (e.g. part name, marking etc.).
8. Supporting to save detail nesting result as a CSV file which can be directly readable from Excel.
9. Displaying detail nesting result on the nesting list window and summary list window.
10. Embedding on-line help for easy-to-use.";
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 = '';
}
}