var fDesc=new Array();
fDesc[0] = "This crossword puzzle maker, Crossword Weaver, is the leading crossword puzzle software. Type in your words to quickly create two styles of crossword puzzles.
The freeform style uses only your words. Perfect for educators, home schoolers, parents, and anyone wanting their puzzle to use only their words.
Or, our patented technology mixes your words with a high quality database to give you professional puzzles in just seconds!
Used by teachers, parents, puzzle lovers, businesses, newsletter editors, publishers, and newspapers all over the world!";
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 = '';
}
}