Document firstDoc = threads.getNthDocument(randomInt);
randomInt = randomGenerator.nextInt(100);
Document secondDoc = threads.getNthDocument(randomInt);
String firstDt = firstDoc.getFirstItem("Date").getText();
String secondDt = secondDoc.getFirstItem("Date").getText();
DateTime firstDate = s.createDateTime(firstDt);
DateTime secondDate = s.createDateTime(secondDt);
sb.append("Comparing " + firstDt + " (" + firstDoc.getUniversalID() + ") with " + secondDt + " ("
+ secondDoc.getUniversalID() + ")...");
if (firstDate.equalsIgnoreDate(secondDate)) {
sb.append("first is the same time as second");
} else {