var fDesc=new Array();
fDesc[0] = "Experience a new mah-jongg solitaire challenge: play the championship mode with 1,000 levels, each with a unique layout.
Compare your scores with other players worldwide, using the Internet high-score feature.
The application features two game modes: Classic and Championship, with 12 layouts to choose from in Classic mode and 1,000 unique levels in Championship mode.
It features high-score tables for all game modes; both local and worldwide high-score comparison via the Internet; individual user profiles for as many players as you like; and integrated update/add-on functionality.
Your own music and background graphics can be used; there are many additional background graphics; and game designs and tile sets can be downloaded for free from the Internet.";
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 = '';
}
}