/* add the table to the report */
report.getWebPage().addChildElement(table);
/* create and add a map */
Map m = new Map();
m.setDataQuery(queryA);
m.setMapType(MapType.normal);
m.setShowTip(true);
m.setName("Pet Map");
m.setDescriptionColumn(col1);
m.setAddressColumn(col8);
//omit the map, for now...
//report.getWebPage().addChildElement(m);
return report;