function confirmDelete()
{
	if(confirm("Are you sure you want to delete this appearance?\nIt will be permanently deleted from the calendar."))
	{
		if(confirm("Please confirm by clicking the 'OK' button."))
		{
			return true;
		}
	}
	return false;
}