var fDesc=new Array();
fDesc[0] = "Mahjong Carnival is an original oriental mahjong puzzle, it opens up a great opportunity to join several carnivals around the world! But first, you have to disassemble a pyramid of whimsical tiles. The most valuable of them are gold ones. The main question is what tiles are hidden inside the pyramid.
Solve a tricky oriental brain teaser and plunge into the immersive atmosphere of a colorful carnival!";
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 = '';
}
}