var fDesc=new Array();
fDesc[0] = "REA's New York Grade 8 NYSTP English Language Arts Study Guide with TESTware!
Fully aligned with New York’s Core Curriculum Standards.
Are you prepared to excel on this state high-stakes assessment exam?
- Take the diagnostic Pretest and find out what you know and what you should know
- Use REA's advice and tips to ready yourself for proper study and practice";
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 = '';
}
}