var fDesc=new Array(); fDesc[0] = "Set of logical games. Includes:
- Free Renju. Logical game, a variation of the well known Japanese board game (Renju-Gomoku family) with a lot of various features: 4 levels of complexity. Ability to print position and list of moves. Ability to save position to file. Loading position from file or manually. Customized colors of stones. Demo game included.
- Bulls and Cows. The goal is to guess a number for minimal time and number of attempts.
- Hanoi Tower. The goal is to move bricks from one position to another for minimal time and number of moves. Demo game included."; 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 = ''; } }