private void doEditContact(String id) {
History.newItem("edit", false);
IOCBeanDef<EditContactPresenter> bean = manager.lookupBean(EditContactPresenter.class);
EditContactPresenter presenter = null;
if (bean != null) {
presenter = bean.getInstance();
}
if (presenter != null) {
presenter.go(container, id);
}
}