var fDesc=new Array();
fDesc[0] = "Growing A Nation is an interactive multimedia program that tells the story of American agriculture and its influence on important events and issues in American history.
Using techniques of digital story telling, the program brings the history of agriculture to life and shows learners that the history of America is much more than just wars and battles. The program is filled with a wealth of original historical documents and media resources.";
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 = '';
}
}