questia.Package( "coreweb.landing" ); coreweb.landing.fullEncyclopedia = function(){ document.getElementById( 'excerptEncycl' ).style.display = 'none'; document.getElementById( 'fullEncycl' ).style.display = 'block'; } coreweb.landing.excerptEncyclopedia = function(){ document.getElementById( 'excerptEncycl' ).style.display = 'block'; document.getElementById( 'fullEncycl' ).style.display = 'none'; } coreweb.landing.shortSnippet = function(index ) { document.getElementById( 'fullSnippet'+index ).style.display = 'none'; document.getElementById( 'readMore'+index ).style.display = 'block'; document.getElementById( 'readLess'+index ).style.display = 'none'; } coreweb.landing.fullSnippet = function( index ) { document.getElementById( 'fullSnippet'+index ).style.display = 'block'; document.getElementById( 'readMore'+index ).style.display = 'none'; document.getElementById( 'readLess'+index ).style.display = 'block'; } coreweb.landing.hideTocContent = function( index ) { document.getElementById( 'tocContent'+index ).style.display = 'none'; document.getElementById( 'openToc'+index ).style.display = 'block'; document.getElementById( 'closeToc'+index ).style.display = 'none'; } coreweb.landing.showTocContent = function( index ) { document.getElementById( 'tocContent'+index ).style.display = 'block'; document.getElementById( 'openToc'+index ).style.display = 'none'; document.getElementById( 'closeToc'+index ).style.display = 'block'; }