var fDesc=new Array(); fDesc[0] = "This software allows you to play the Tarot card game according to the 4 player rules of the French Federation of Tarot.The computer can take the place of 1 to 4 players.
The machine can advise the player during the biddings, the discard and the card play.Deals, normally made at random, can be created with an editor of deals to allow problems resolution. The computer calculates the score of the tournaments.A tournament can be saved and continued later on."; 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 = ''; } }