request.setAttribute("dbid", marketingListId);
// TODO Remove this once the lookup controller is done.
// This is for the marketinglist drop down.
try {
ContactFacadeHome contactFacadeHome = (ContactFacadeHome)CVUtility.getHomeObject("com.centraview.contact.contactfacade.ContactFacadeHome", "ContactFacade");
ContactFacade remote = contactFacadeHome.create();
remote.setDataSource(dataSource);
Vector marketingLists = remote.getDBList(individualId);
request.setAttribute("marketingLists", marketingLists);
request.setAttribute("AllDBList", marketingLists);
} catch (CreateException ce) {