var fDesc=new Array();
fDesc[0] = "CFB Word Games are three Microsoft Windows word games that will appeal to crossword enthusiasts and anybody who enjoys the challenge of word puzzles.
Each game has several levels and 500 different puzzles. As each level increases in difficulty your score increases but you are always racing against the clock! If you finish more quickly you will get a higher score. The top ten scores for each game are recorded in a High Scores table.";
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 = '';
}
}