var fDesc=new Array();
fDesc[0] = "KG-Chart for Cross Stitch" is a program to design a chart for cross stitching.
The ability to draw each stitch with a color and mark makes it easier for users to create a pattern for cross stitching. Usual painting software can't do this.
With this program you can print a chart and a color table in which pages are automatically divided.
It also offers you the possibility to convert your photo into a chart.";
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 = '';
}
}