var fDesc=new Array(); fDesc[0] = "SumoCue is a helper and solver for Killer and Jigsaw Sudokus.
If you like the Killer variant, but you're not really into all those calculations, you may find SumoCue a very useful tool. It keeps track of cage sums and digit combinations that are allowed.
Candidates are maintained by the program, but you can always intervene. It is one of the few programs that allows you to enter and solve Jigsaw Killer Sudokus."; 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 = ''; } }