var fDesc=new Array();
fDesc[0] = "Crochet Charts was created to give symbol crochet designers the freedom and flexibility to create whatever they can imagine.
Main features:
- Freeform placement of stitches.
- Optional automatic generation of basic rows, or rounds.
- Unlimited chart size, and unlimited stitch count.
- Comes with 109 stitches and symbols.
- Export charts to industry standard formats: PDF, SVG, JPEG, PNG, TIFF, BMP.";
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 = '';
}
}