var fDesc=new Array();
fDesc[0] = "Crosswords is a crossword authoring software with crossword editing and solving tool.
Crossword making software is a set of tools that makes correct crosswords according to predefined pattern (grid dimensions, square positions and fixed letters).
These tools are:
- Compose crosswords: This application is for making correct crossword out of selected dictionary and predefined patterns.
- Edit crosswords: This application is for editing crosswords, adding and changing definition for all words in across and down direction
- Solve crosswords: This application is for solving crossword published in digital form.";
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 = '';
}
}