var fDesc=new Array();
fDesc[0] = "The idea of StarWord is to form as many 4- and 5-letter words as you can by moving along the connecting lines from one letter to another in the star diagram.
Do not skip letters. You may come back to a letter and use it more than once in the same word, but do not stand on a letter, using it twice in direct succession.
Words beginning with a capital letter, contractions, plurals, and present-tense verbs ending in 's' are not allowed and hyphenated, obsolete, slang, poetic, archaic, foreign, and dialect words are also not allowed.";
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 = '';
}
}