// JavaScript Document

var descwindow; 

function openDesc(id){
	if(!descwindow || descwindow.closed){
		descwindow = window.open("calendar/descwindow.php?id=" + id, "_blank", "height = 220, width = 320");
		} else {
			descwindow.focus();
			descwindow.location.href = "calendar/descwindow.php?id=" + id;
	}
}

function changeTitle(title){
	self.document.title = title;
}

function changeMonth(){
	var month = document.getElementById("event_month");
	month_sel = month.options[month.selectedIndex].value;
	self.location.href = "events.php?mth=" + month_sel;
}
	