var fDesc=new Array();
fDesc[0] = "Sudoktor is a Sudoku solving assistant. It helps you to solve and understand Sudoku puzzles but it can also be used as a Sudoku tool for entering and solving Sudoku puzzles as well as for saving your progress on a puzzle.
Sudoktor is a very compact program with the following features:
- generates valid 9x9 sudoku puzzles
- allows to enter by hand or cut-and-paste standard 9x9 Sudokus
- offers an intuitive and quick entry method
- shows or hides pencil marks, updates them automatically
- full Undo/Redo feature
- offers advanced analysis on demand:
- candidates
- wrong values
- solution
- subsets, grid analysis, forcing chains, ALS...
- etc...";
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 = '';
}
}