var fDesc=new Array();
fDesc[0] = "A complete whole-class teaching resource for exciting and inspirational lessons
From adaptation to renewable energy, Boardworks GCSE Core Science boasts a wealth of high quality, ready-prepared and completely customisable resources which fully cover the 2011 GCSE specifications and help you deliver extraordinary lessons.
Features:
Dynamic animations explore complex scientific topics
Interactive experiments explain essential information in a fun and easily recallable way
The resources offer extensive material that covers Controlled Assessment and How Science Works";
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 = '';
}
}