var fDesc=new Array();
fDesc[0] = "It is a captivating and fun mahjong game. Play in classic mode or try memory mode for expert players. The game features high quality backgrounds shot around New Zealand.
Main Features:
- Many different game modes including classic, memory and two turns.
- Different skill levels.
- Undo moves.
- Suggest moves.
- Reshuffle tiles.
- High quality backgrounds, mostly shot around New Zealand.
- Timer.
- High Scores.
- Built into help system.";
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 = '';
}
}