var fDesc=new Array(); fDesc[0] = "Generate and solve Sudoku puzzles against the clock. Nine grid sizes from 4x4 to 16x16. Five levels of difficulty to suit all levels of play. Play on your PC or print out to solve in the traditional way. Save games to complete later. Fastest times stored with your name!

Coaching modes to help you with tricky puzzles. Wrong guesses are highlighted, and possible values for empty squares are pencilled in.

Configurable skins and colours."; 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 = ''; } }