var fDesc=new Array();
fDesc[0] = "Mahjong, the classical Chinese game loved by old and young. In the flood of commercialized Mahjong games, it is truly hard to know how the original looks like. Now you have the original in front of you.
This free mahjong game features tiles with original Chinese letters and signs. And there is no excessive animation to disturb that unique feeling of playing a game of traditional Mahjong. This free mahjong game is a perfect choice for all who like to take 5 minutes brake, and instead of smoking they decide to sharpen their concentration with a game of finest free Mahjong available today. Classical style, traditional Mahjong game is waiting to be discovered again.";
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 = '';
}
}