var fDesc=new Array();
fDesc[0] = "Mahjong Alchimie is an interesting puzzle game for free. It is very simple; your task of this game is to delete all pairs of Mahjong with in time limited. You can use your mouse to find a pair of Mahjong with the same mark, and press your left button to select them.
When you click a right pair, they will be deleted, and when you choose a wrong pair, they will still there, and you must find another pair of Mahjong. After all pairs of Mahjong have been deleted, you win; you can go to the next level!";
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 = '';
}
}