var fDesc=new Array();
fDesc[0] = "Visual Stitch & Print will help embroiderers & screen-printers to prepare product presentations. Users may easily create samples of garment decoration with printing & embroidery designs. Visual Stitch & Print is the unique realistic simulation software working on 2D & 3D models.
Features:
-Modeling of embroidery designs and screen print images on garments
-Realistic simulation on 2D models
-Realistic simulation on 3D models
-Save samples as image files
-Save samples as video files
-Print Info-Card
-Quote embroidery jobs";
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 = '';
}
}