
function agenda_window(agenda_url)
	{	
		var newwindow = '';
		
		if (!newwindow.closed && newwindow.location) {
			newwindow.location.href = agenda_url;
		}else{
			newwindow=window.open(agenda_url, "Detail","location=0,status=0,scrollbars=yes,width=550,height=300");
			if (!newwindow.opener) newwindow.opener = self;
		}
		if (window.focus) {newwindow.focus()}
		return false;
	}

