var fDesc=new Array(); fDesc[0] = "Cribbage is a card game. The game is played to a score of 121 points, and the score is tracked on a cribbage board. If you have played enough cribbage you can note your optimal play changes depending on where you and yours opponent are located on the board. This project generates information to improve play at different 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 = ''; } }