var fDesc=new Array();
fDesc[0] = "Drag a chain of 3 or more crystals of the same color. Immerse yourself in a world of gems and magic with this beautiful game that will take you to high levels of pleasure by playing it.
Game features
-Animated backgrounds
-Amazing bonuses
-Addicting gameplay";
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 = '';
}
}