var fDesc=new Array();
fDesc[0] = "Logical game. Implementns two variations of the well known Japanese board game (Renju-Gomoku family): Free Renju and Gomoku.
Main features are:
- 4 levels of complexity.
- Ability to print position and list of moves.
- Ability to save moves to file.
- Ability to load position from file or manually.
- Includes demo game.
- Customized colors of stones.";
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 = '';
}
}