function hideShowAwardYear(awardYear){var theTable=document.getElementById(awardYear+"table");if(theTable.style.display=='block'){theTable.style.display='none';return;}
var yearCount=yearArray.length;var currYearList;var i=0;while(i<yearCount){currYearList=document.getElementById(yearArray[i]+"table");currYearList.style.display='none';i++;}
theTable.style.display='block';}