var fDesc=new Array();
fDesc[0] = "DiaWord is a crossword puzzle with a diamond shaped grid. Some letters in the puzzle are given. All words are made with clues given.
You would print a puzzle and solve it on paper at your leisure. Puzzle cannot be solved on screen.
- Load a dictionary of your choice from the five provided with this program: English1 to English5.
- Create a new puzzle
- Print the puzzle and its solution
Program Features
- Print puzzles and their solutions
- Load one of the five English dictionaries
- Set display colour schemes";
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 = '';
}
}