
function addEvent()
{
	editEvent(-1);
}

function editEvent(n)
{
	try
	{
		var win = window.open("EditEvent.php?n="+n, "_blank", "width=602,height=500,scrollbars=no,resizable=yes,status=yes");
		win.focus();
	}
	catch (ex)
	{
		alert(ex);
	}
}

function removeEvent(n)
{
	if (confirm("Remove event?"))
		document.location.href="schedule.php?command=remove-event&n="+n;
}
