var fDesc=new Array(); fDesc[0] = "HexWord is a crossword puzzle with hexagonal rather than square cells. Some letters in the puzzle are given. All words are made clock-wise and adjacent letters in touching hexagons are same. Normally you would print a puzzle and solve it on paper at your leisure. However you can also solve on screen using the following commands:
- Load a dictionary of your choice from the five provided with this program: English1 to English5.
- Create a new puzzle
- Move mouse cursor over a cell and press a letter to enter in the cell
- Puzzle is done when all letters have been placed
- Click Check button to verify if your solution is correct"; 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 = ''; } }