var fDesc=new Array(); fDesc[0] = "Pentobi is a computer program that plays the board game Blokus. Supports the game variants classic, classic two-player, and duo. The game provides different levels of playing strength, can save and load games in Smart Game Format including comments and move variations. Also provides board display with optional move numbers and coordinate labels. Moreover can export images of board positions."; 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 = ''; } }