// Tell the config connection that we have removed a Placemark, if the
// config connection exists (it should)
Object obj = getServletContext().getAttribute(PLACEMARKS_CONN_ATTR);
if (obj != null) {
PlacemarkWebConfigConnection connection = (PlacemarkWebConfigConnection)obj;
connection.removePlacemark(placemark);
}
}