var fDesc=new Array();
fDesc[0] = "DeskART is the program that allows your artistic side to
explore a whole new world of CNC possibilities.
Features:
- DeskART will import a BMP, GIF, JPEG, WMF, or TIFF image.
- Convert the image into a 3D DXF Surface Mesh of 3D faces or directly into machineable G-Code.
- DeskART comes with a host of image manipulating filters for on the fly image correction.
- Provides basic Raster to Vector conversion based on Image Depth with built in Topography and Vectorize settings.
- Tool paths can be smoothed with curve fitting and Entity count can be reduced significantly.";
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 = '';
}
}