var fDesc=new Array();
fDesc[0] = "Buzz-2-Stitches is the EASIEST way to turn graphics into beautiful embroideries with just a few simple choices. Don’t be taken in by more expensive alternatives. Buzz-2-Stitches is all you need! Great for beginning hobbyists and experienced hobbyists, too!
Features:
- Appliqué feature lets you create appliqué designs from simple clipart or shapes
- Cross-Stitch motif feature lets you create designs that look and feel like hand work
- Set the size of your embroidery design regardless of the size of your graphic
- Basic Editing - Change thread colors, color stitching order, rotate and flip
- Use preset cloth types to set correct density and under stitching for a variety of fabrics and weights or create your own custom cloth types";
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 = '';
}
}