ContactFacadeHome cfh = (ContactFacadeHome)CVUtility.getHomeObject(
"com.centraview.contact.contactfacade.ContactFacadeHome", "ContactFacade");
String[] rowId = request.getParameterValues("rowId");
returnStatus = "deletesuccess";
try {
ContactFacade remote = cfh.create();
remote.setDataSource(dataSource);
if (rowId != null) {
for (int i = 0; i < rowId.length; i++) {
remote.deleteIndividual(Integer.parseInt(rowId[i]), indvID);
}// end of for (int i = 0; i < rowId.length; i++)