var fDesc=new Array();
fDesc[0] = "An easy-to-use program that controls devices used to cut foams. It is feature-rich and includes a CAM module, saving the user money on dedicated CAM software.
Features:
- support for dxf 3D, RAW 3D, STL and BMP
- BMP-based 3D relief support
- 3D model and output files visualizations
- CAM module
- resolution control
- tools and operations libraries
- supported tool types: flat, ball and conical
- built-in operation types: roughing, layering, lining and surfacing";
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 = '';
}
}