var fDesc=new Array();
fDesc[0] = "The S2M Center™ is a core product that integrates with Cabinet Vision and Cabnetware. Geometry and machining data from Cabinet Vision and Cabnetware is automatically generated for virtually any CNC machine on the market. The S2M Center solution is capable of nesting, optimization, and is able to generate machine ready code for saws, point-to-point machines, CNC routers, Drill and Dowel Machines, Chop Saws, and other specialized woodworking machinery.
With support for Nested-Based Manufacturing (“NBM”) and Work Cell Manufacturing, the S2M Center provides the needed productive benefits for today’s woodworking business.
Main features:
- Automatic Tool Selection Logic
- Part Filtering
- Output to Specialized Machinery such as Automatic Chop Saws and Drill and Dowel Machines
- Ordering and Grouping of Parts By Cabinet on Sheets
- Ability to Import DXF Parts
- Save Parts to Part Library for easy recall
- Ability to Move Parts on Nests
- Copy and Paste Parts on Nests
- Linked Part Outlines (Bridging)";
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 = '';
}
}