var fDesc=new Array();
fDesc[0] = "If you like word games, you're sure to like Boogle. Not only is it fun, but it can help build up your vocabulary and spelling skills. Boogle has two modes: Single Player Mode and Multi Player Mode.
In Single Player mode, it is a one-player only game, and you do not play “against” the computer. It was made simply to kill time. It has a High Score system, which stores the 10 highest scores, and includes a built in spell-checker.
In Multiplayer mode, you can play against friends over a LAN or the Internet.";
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 = '';
}
}