var fDesc=new Array(); fDesc[0] = "Tabula Letum is a two person board game based on Tablut, otherwise known as The Viking Game. The rules are simple, but the game itself is very complex.

The game is made up of men defending the king (yellow), or attacking (blue). If you are attacking, the objective of the game is to kill the king; if you are defending the objective is to get the king to one of the corner squares. And, contrary to what you would think, it is easier to attack than defend - but not by much."; 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 = ''; } }