var fDesc=new Array(); fDesc[0] = "3Doku 1.2 brings the traditional Sudoku game to the third dimension. In a 9x9x9 cube, 27 Sudoku schemas intersect one another along the three axis. Every 9x9 bi-dimensional schema must be solved keeping in mind that every single cell belongs to the selected schema and also to the others two placed on the orthogonal planes."; 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 = ''; } }