var fDesc=new Array(); fDesc[0] = "Sudoku banzai is a free online Sudoku game with 4x4, 9x9 and 16x16 grids with a single solution. You can play for free 1 grid per day without registering. Sudoku is derived from the Latin square and the problem of the 36 officers of the Swiss mathematician Leonhard Euler. The goal is to fill the grid with a series of numbers all different, that are never more than once on the same line or or in the same column, , or in the same sub grid."; 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 = ''; } }