This report has a text element that runs a script which locates the toc and exportReport elements and sets their display value to none.
<script type="text/javascript">
function hideToc(){
var toc=document.getElementsByName("toc");
if( toc.length > 0 ){
toc[0].style.display='none';
}
var expt=document.getElementsByName("exportReport");
if( expt.length > 0 ){
expt[0].style.display='none';
}
}
hideToc();
</script>