var fDesc=new Array();
fDesc[0] = "Art Mahjong 3 offers three variants for the traditional Chinese board-game. You can play Dragon-Mahjong, Dragonmaster, and Classic Mahjong.
Dragon-Mahjongg is a fast-paced variant where time is not on your side. Especially in higher levels this offers a true challenge for all gamers. In Dragonmaster, you take on a challenging artificial intelligence, the Dragonmaster himself.";
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 = '';
}
}