// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function autoevents() {
	var x = (screen.width - 760) / 2;
	var y = (screen.height - 720) / 2;
	MM_openBrWindow('/events/index.php?','','status=yes,scrollbars=yes,resizable=yes,width=760,height=720,left=' + x + ',top=' + y);
}


function showeventframe() {
	var a = document.getElementById('event-container');
	if (a.className != 'displaynow') {
		a.className = 'displaynow';
	} else {
		a.className = 'nodisplay';
	}
}