var fDesc=new Array();
fDesc[0] = "While BuzzEdit started as a simple embroidery stitch editor, it has continued to grow into a robust tool for customizing and creating embroideries! It is a powerful stitch editor, an auto-hooping program, a layout program, a basic digitizing program, a customizer and an automatic wreath and border creator.
Main features:
- Easy to Use Graphical Interface
- Realistic 3-D Reference Window
- Powerful Stitch Time Graphs Provide Easy Selection and more
- Instant On-Screen Refresh
- Robust Stitch Editing Capabilities";
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 = '';
}
}