public void startElement(String uri, String localName, String qName, Attributes attrs) throws SAXParseException,SAXException {
int length = attrs.getLength();
//Each attribute
results = new QueryResults();
for (int i=0; i<length; i++) {
// Get names and values to each attribute
String name = attrs.getQName(i);
if(name.compareTo("name")==0){