var fDesc=new Array(); fDesc[0] = "In Hara Kiri, each player has a layout of cards, initially face down, which can be successively replaced by new cards drawn from the stock or discard pile. The aim of this game is to make a layout scoring as little as possible. The scores at the end of the play are sometimes considered as representing the number of strokes taken to play a hole of golf.
The main object of this game is to make pairs, while keeping unpaired cards as low as possible."; 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 = ''; } }