// JavaScript Document: showHidefunction showAll(){/*  This function toggles the show/hide Divs on and off */ var aDivs = document.body.getElementsByTagName("DIV"); var theLink = document.getElementById('showAllLink'); if (theLink.innerHTML == 'Show All Weeks'){	for (i=1; i < aDivs.length; i++){		if (aDivs[i].className == 'entry'){			aDivs[i].style.display = "block";}		}	theLink.innerHTML = "Hide All Weeks";}else {	for (i=1; i < aDivs.length; i++){		if (aDivs[i].className == 'entry'){			aDivs[i].style.display = "none";}		}	theLink.innerHTML = "Show All Weeks";}	}function showHide(whichOne){/* This function shows and hides individual items on request. */	var strThisOne = document.getElementById(whichOne);	if (strThisOne.style.display != "block")    {        strThisOne.style.display = "block";    }    else    {        strThisOne.style.display = "none";    }}