var fDesc=new Array();
fDesc[0] = "Dream Pet Link is a puzzle and board game, for your spare time relaxing and entertainment. This game is not difficult at all, the only thing you have to master is that you have a keen sight that you can pick up the same pieces of tiles in less term.
Connect identical tiles to each other to clear the board. Click 2 identical tiles to connect them. Each connection can have no more than 2 turns. Yet saying is always easier than doing. Have fun and good luck..!";
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 = '';
}
}