function showHideNewsYear(newsYear){var monthList=document.getElementById(newsYear+'MonthList');if(monthList.style.display=='block'){monthList.style.display='none';return;}
monthList.style.display='block';}
function showHideNewsMonth(newsYear,newsMonth){var itemList=document.getElementById(newsYear+newsMonth+'ItemList');if(itemList.style.display=='block'){itemList.style.display='none';return;}
itemList.style.display='block';}
function loadNewsItem(newsYear,newsMonth,newsIndex){var theImage=document.getElementById('newsImageLarge');var theTitle=document.getElementById('newsBodyTitle');var theText=document.getElementById('newsBody');if(newsArray[newsYear][newsMonth][newsIndex]["itemImage"].length==0){theImage.innerHTML='';theImage.style.display='none';}else{theImage.innerHTML='<img src="../newsImages/'+newsArray[newsYear][newsMonth][newsIndex]["itemImage"]+'" alt="'+newsArray[newsYear][newsMonth][newsIndex]["itemImage"]+'" border="0">';theImage.style.display='block';}
theTitle.innerHTML=newsArray[newsYear][newsMonth][newsIndex]["itemTitle"];theText.innerHTML=newsArray[newsYear][newsMonth][newsIndex]["itemText"];}
