var fDesc=new Array(); fDesc[0] = "FreeDoko is a Doppelkopf game for Linux and Windows. Doppelkopf is a game extremely popular in North Germany. It´s a four player game with variable partnerships. The goal is to capture valuable cards in tricks. It can be played with five people, with the dealer sitting out. The program will simulate other three players that will compete against you. You will see the table from top, with your cards faced up on the lower part of the screen. FreeDoko is played with a double pack with only A, K, Q, J, 10 and 9. So, the pack contains 24 pairs of identical cards, 48 cards in total. The cards have the following values: A = 11 10 = 10 K = 4 Q = 3 J = 2. The goal of the game is to take more than half of these card points in tricks. The card points are used to determine which team has won the hand. They are not the same as game points written on the score-sheet as a result of winning or losing. FreeDoko allows you to save and load parties. You can choose the card preferences, the rules and modify the players' database."; 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 = ''; } }