if (pg.getRecordsInitial() <= TotalRecords) {
poil = new POILocation[(pg.getRecordsFinal() - pg.getRecordsInitial()) + 1];
for (int intI = pg.getRecordsInitial(); intI <= pg.getRecordsFinal(); intI++) {
if (rs1.absolute(intI)) {
poil[iCount] = new POILocation();
poil[iCount].setName(rs1.getString("NOME"));
poil[iCount].setDistrict(rs1.getString("BAIRRO"));
poil[iCount].setCarAccess(rs1.getBoolean("ROTAPE"));
poil[iCount].setPoint(new Point());