var fDesc=new Array();
fDesc[0] = "Yambo is a remake of Yahtzee, an old mosaic 5 dice game.
To play the game you roll five dice in an effort to make different combinations for the most points. You get 3 rolls for each turn, keeping the dice you like and discarding the ones you don't. Shoot for three-of-a-kind, four-of-a-kind, a full house, a straight, and more. Rules are based on standard poker hands, with a few extra bonus hands thrown in.
All in all, this is a great game for family and friends, coming with the High Score list to compete them. Instructions to understand the rules are implanted in the game.";
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 = '';
}
}