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 Events'){
	for (i=1; i < aDivs.length; i++){
		if (aDivs[i].className == 'indent'){
			aDivs[i].style.display = "block";}
		}
	theLink.innerHTML = "Hide All Events";
}
else {
	for (i=1; i < aDivs.length; i++){
		if (aDivs[i].className == 'indent'){
			aDivs[i].style.display = "none";}
		}
	theLink.innerHTML = "Show All Events";
}	


}

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";
    }
}