var fDesc=new Array();
fDesc[0] = "Spelling Force 2 is a kids’ spelling game in which spellers of all ages and stages can practice and test themselves against a huge range of built-in spelling lists. These spelling lists include lists developed by the Department for Education and Employment (DfEE), graded word lists, word-building families, word groups, high-frequency word lists, topic-specific word lists, lists of difficult words and more!
By using these built-in spelling lists, kids develop variety of reading strategies and skills that increase fluency and accuracy. Kids can even focus-in on particular spelling patterns and rules by entering (or having you enter) specific words to create custom spelling lists. Spelling Force 2 also includes the Look-Cover-Write-Check module, which allows kids to use the conventional method of spelling practice on the computer!
Kids practice both the built-in and player-created spelling lists with four spelling games: X-ray Emergency, Major Meldown, Magno Beamer and Launchpad Panic. These games provide code-breaking challenges, pattern-matching exercises, spelling puzzles and arcade action, all of which promote strategic language thinking skills.";
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 = '';
}
}