var fDesc=new Array(); fDesc[0] = "ThudBoard is a computer application that can be used to play Thud battles without using the actual board.

The main purpose of ThudBoard is to facilitate online gaming, where people communicate moves by sending each other board-coordinates. Using the ThudBoard these moves can be carried out, and whole battles can be saved either as a series of moves or as a board position.

Another feature is the fact that multiple battles can be stored, so you can play many games simultaneously without the onerous task of remembering where each individual piece was in this battle you have been playing with your cousin in XXXX over the last few years."; 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 = ''; } }