window.onload = newWinLinksMyEvents;

function newWinLinksMyEvents() {
	for (var i=0; i < document.links.length; i++) {
		if (document.links[i].className == "newWin") {
			document.links[i].onclick = newWindowMyEvents;
			document.links[i].style.visibility = "visible";
		}
	}
}

function newWindowMyEvents() {
	var theWindowMyEvents = window.open(this.href, "eventswindow", "resizeable=no,toolbar=0,location=0,statusbar=0,menubar=0,location=no,scrollbars=yes,width=500,height=410");
	theWindowMyEvents.focus();
	return false;
}