// Popup for editing calendar dates
function myPopupList(event)
{
	StopPropagation(event);
	var win = openPopup(event, 0, 0, 672, 440, null,
		"../html/calendar_edit.html?list=1");
	return 1;
}
// Popup for adding calendar events
function myPopupAdd(event, nDate)
{
	StopPropagation(event);
	var win = openPopup(event, 0, 0, 654, 398,
		"status=no, toolbar=no, menubar=no, location=no, scrollbars=no, resizable=yes",
		"../html/calendar_edit.html?add="+String(nDate));
	return 1;
}
// Popup for editing calendar events
function myPopupEdit(event, nId)
{
	StopPropagation(event);
	var win = openPopup(event, 0, 0, 654, 398,
		"status=no, toolbar=no, menubar=no, location=no, scrollbars=no, resizable=yes",
		"../html/calendar_edit.html?edit="+String(nId));
	return 1;
}
// Popup for editing calendar events
function myPopupRemv(event, nId)
{
	StopPropagation(event);
	var win = openPopup(event, 0, 0, 654, 398,
		"status=no, toolbar=no, menubar=no, location=no, scrollbars=no, resizable=yes",
		"../html/calendar_edit.html?remv="+String(nId));
	return 1;
}
