var fDesc=new Array(); fDesc[0] = "This game is the same as sudoku, except that the small groups are in an irregular shape. The object of this game is to fill in all the squares with numbers 1 to 9, the numbers in a row or a column must not repeat, and also the numbers in a group must not repeat. The faster you finish the game, the higher your score. When you are stuck, you can use the hints, but you will be penalized."; 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 = ''; } }