var fDesc=new Array();
fDesc[0] = "Professional Sew-Ware™ (PSW) is a state-of-the-art embroidery software from SINGER®. It works with your personal computer to expand the already outstanding capabilities of QUANTUM® XL series of embroidery machines.
Main features include:
- Easy, three-step design digitizing
- 525 built-in designs and 49 built-in fonts
- 20 lettering frames for customized fonts
- 160 built-in stitch types including appliqué and cross stitch
- Compatible with multiple design files and formats";
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 = '';
}
}