var fDesc=new Array();
fDesc[0] = "Scopa is a nice italian card game, with many features, popular in many countries.
You can choice among three types of games: one game, 11 points game and 21 points game. The game will continue if it finished as a draw.
At the beginning the player that shuffles the cards puts 4 uncovered cards on the table. Then he deals 3 covered cards at a time. The other player starts the game.
The game consists in winning the greater number of cards";
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 = '';
}
}