var fDesc=new Array(); fDesc[0] = "GSeptica is the GTK implementation of a popular cards game, known in Romania as Septica.

Main Features :

* The game is won by the side who makes (takes) more points.
* 10 and 11 (ace) are points.
* A card with the same number as the card on the table takes it.
* 7 takes any card.
* The side who responds to a card put down can put any card down.
* The side that put the initial card down can chose to continue the hand with a take if its card was taken."; 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 = ''; } }