// Searle Center General Scripts
// Author: Nathan Wiens
// Date: 10/05/09

// Event pop-up windows
function showEvent(url) {	 
	eventwindow = window.open(url, 'event', 'width=570,height=460,scrollbars=yes,resizable=yes,location=yes');
	eventwindow.focus();
	if (window.focus) {eventwindow.focus();}
	return false;
}
