var fDesc=new Array();
fDesc[0] = "DragonScales is back. Match colorful dragon scales to collect special items, defeat enemies and solve challenging puzzles.
The caravan of mages has been slaughtered by a mysterious spell and you’re the only wizard to survive the attack. Delve into a dark world filled with the followers of a sinister prophecy whose purpose is to invoke absolute darkness and decimate all life. Your mental prowess is the ultimate bid for the survival of your people.";
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 = '';
}
}