//
//
// BEGIN functions for hiding/showing events and headlines

function DisplayEvents() {
	if (document.getElementById) {
	
		var EventsStyle = document.getElementById('UpcomingEvents').style;
		var HeadlinesStyle = document.getElementById('NewsHeadlines').style;
		
		EventsStyle.display = "block";
		HeadlinesStyle.display = "none";
		
	}
}

function DisplayHeadlines() {
	if (document.getElementById) {
	
		var EventsStyle = document.getElementById('UpcomingEvents').style;
		var HeadlinesStyle = document.getElementById('NewsHeadlines').style;
		
		EventsStyle.display = "none";
		HeadlinesStyle.display = "block";
		
	}
}

// END functions for hiding/showing events and headlines
//
//


//
//
// BEGIN functions for pop-up windows

function popupwindow(url) {			// This is for the regular pop-up window
	mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=625,height=525');
}

function popupwindowslide(url) {	// This is for the slideshow pop-up window
	mywin = window.open(url,"win",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=625,height=525');
}

// END functions for pop-up windows
//
//


//
//
// BEGIN function for footer pulldown menu

function pageRedirect(pageForm) {
	var URL = document.pageForm.pageLocation.options[document.pageForm.pageLocation.selectedIndex].value;
	window.location.href = URL;
}

// END function for footer pulldown menu
//
//