var fDesc=new Array(); fDesc[0] = "Dara is an African board game for two players, who are sitting opposite to each other.

It is played with 12 compartments, called houses. Initially, each player owns 6 houses, and each house contains 4 seeds. The purpose of the game is to win houses from the other player.

You can play against a friend or against 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 = ''; } }