var fDesc=new Array(); fDesc[0] = "This strategy game, which is based on the Japanese GO, will challenge your brain at the most. In a 19x19 board you place alternating with your opponent one of your symbols. The point of the game is, to bring 5 of your symbols in a row (diagonally or straightly), before your opponent does it. If you don't know how to move, the computer will help you with a suggestion."; 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 = ''; } }