var fDesc=new Array();
fDesc[0] = "Play the ghost word game against your Windows computer. The goal is to avoid spelling words of four or more letters. You move by typing a letter. You and WinGhost take turns adding a letter to the end until a player completes a word, at which point that player loses.
Each letter must lead toward an English word. Proper nouns are not allowed. Remember, if you spell a word of four or more letters, you lose!";
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 = '';
}
}