var fDesc=new Array();
fDesc[0] = "Stitch Art Easy! - simple and handy program for designing of cross-stitch patterns (embroidery schemes). You can with it:
Open any photo or picture, convert and print it to embroidery scheme, and embroider your next masterpiece!
Adjust picture by size, colors and much more.
Save prepared scheme for future work and changes.
Use standard threads suites.";
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 = '';
}
}