var fDesc=new Array();
fDesc[0] = "Yahtzee is a highly popular and addictive dice game, and it is played in many countries around the world. Although it is a simple game to learn, it hides a complicated mathematical complexity, and has long been considered mathematically unsolvable.
You can play Yahtzee in multiplayer mode over a LAN or the Internet, using enhanced multiplayer rules. Up to 6 players.
Yahtzee is also know as Kniffel, Quintzee, Omniscore and Yaht.";
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 = '';
}
}