var fDesc=new Array();
fDesc[0] = "With Crossword Creator 2 you may create custom crossword puzzles.
Main features:
- Use your own word lists, or use the built-in word lists.
- Use the smallest grid for your words, or use the most words for your grid size.
- Create files for a paper crossword.
- Work the crossword on the computer or on paper.";
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 = '';
}
}