var fDesc=new Array();
fDesc[0] = "NagiQ is a family-friendly, challenging word game, perfect for brain fitness!
In NagiQ, you think of English words and place them on a board, trying to connect to some special, mystic letters. You will complete a level when no unconnected mystic letter remains on the board. And that’s it for the gameplay! There are more than 100 levels grouped into 5 islands (each island introduces variations to the basic gameplay.)
Hours of fun guaranteed!";
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 = '';
}
}