var fDesc=new Array(); fDesc[0] = "Viva Renju! is a program for playing renju against the computer. The renju game has many names, such as gomoku, five-in-row.
Rules of the game:
- Play alternates between one player who starts the game (called Black because he is playing with black stones) and another player (usually called White because he is playing with white stones).
- The renju-board has the limits 15x15 intersections.
- Black starts in the center intersection
Main features:
- quick manual input of position;
- loading/saving of a game position;
- presence of system of the help;
- hint - it is possible to ask for system the help i.e. to show a turn which will be optimum for us;
- the program can show a sequence of winning moves (if this sequence is found);
- there is a mode of autogame in which the user specifies battling strategy and starts game;
- the program shows (in the status line) total time which was spent by the player and time spent by the computer."; 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 = ''; } }