var fDesc=new Array();
fDesc[0] = "Travel through the cosmos, visit strange and wonderful alien worlds, encounter fantastical and bizarre creatures. Space Mahjong has 7 different types of Mah Jong gameplay to choose from, including Crossed Lines, All By Picture, Logical Pair and a one minute timed round, each set in a unique and beautifully rendered alien environment. With hours of Mahjong gameplay, gorgeous graphics and soothing score, Space Mahjong will delight Maj Jong fans of all ages.
Features:
-7 different type of Mah Jong gameplay
-Gorgeous graphics
-Intergalactic adventure through the cosmos
-Soothing soundtrack";
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 = '';
}
}