var fDesc=new Array();
fDesc[0] = "Wordz is a brand-new free online word puzzle which combines classic crossword basis with simple swap-and-match gameplay perfectly. Test your vocabulary and spelling skills, feel a detective, swap letters and decipher new words!Wordz is also a pleasant way to test your knowledge of a foreign language and learn more.";
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 = '';
}
}