var fDesc=new Array(); fDesc[0] = "This is a collection of Sudoku Puzzles to keep you entertained. It includes five difficulty levels to challenge you and enjoy the detailed statistics of each game with graphs, 3D pie and bar charts, and tables to estimate your skill level. Options include total games, current session, series of wins and losses, player's games won, players' scores and hi-scores, statistics for all games, won and lost games, and skipped games."; 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 = ''; } }