var fDesc=new Array(); fDesc[0] = "Sudoku, or Su Doku is a type of puzzle where a 9x9 grid of squares contains the numbers 1-9, one in each grid cell, where a number can not be repeated in any row, column or box (boxes are delineated by thicker lines). Every time you fill in a number Sudoku Snake will automatically check if your puzzle has a unique solution, what that solution is, and what the difficulty level of your puzzle is. In less than a minute you can have created your very own valid Sudoku puzzle. See who amongst your family and friends can create the hardest one!"; 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 = ''; } }