var fDesc=new Array(); fDesc[0] = "Sudoku Portable is the entertaining and addictive Sudoku puzzle game packaged as a portable app, so you can play on the go. You can place it on your USB flash drive, iPod, portable hard drive or a CD and use it on any computer, without leaving any personal information behind. Sudoku Portable is a an addictive puzzle game originally created in France over 100 years ago. It features a 9x9 grid containing 9 3x3 grids. Within this you arrange the numbers 1 through 9. But, each number can only appear once in each of the 9 3x3 grids. And it can only appear once in each row and on each column. It's a simple concept, but it can get addictive quickly."; 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 = ''; } }