var fDesc=new Array();
fDesc[0] = "This phonics software combines the word family method with Orton-Gillingham phonograms. Word families help with phonemic awareness while Orton phonograms and spelling rules teach essential English orthography.
- The Orton-Gillingham has been the standard treatment for dyslexia for more then fifty years.
- The Orton-Gillingham method is congestive approach, which stress individual instruction in the sounds that the phonograms make and the rules of English spelling.
- Teachers, reading specialists and parents chose this educational software as their primary reading program for its simplicity of use and direct teaching method.";
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 = '';
}
}