var fDesc=new Array();
fDesc[0] = "Accurate Embroidery Software offers all the advanced digitizing features of embroidery creation and the most commonly used punching techniques. The selected options lead the professionals to create a design with precision, speed and ease.
- On screen Punching:
Enables you to recreate an embroidery image by your artistic intervention.
- Create running, satin stitch, macro and complex fill using various bezier tools (circle, ellipse, arc, nodes and control points)
- Autopunching & Vectorel Base :Allows you to import artwork created by popular graphic software such as Adobe Illustrator, CorelDraw and all conventional image formats such as BMP, WMF and EMF.";
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 = '';
}
}