*/
private static HashMap processResponse(String text) {
HashMap dataDict = new HashMap();
try {
JSONObject jsonObject = new JSONObject(text);
for (Iterator i = jsonObject.keys(); i.hasNext();) {
String key = (String) i.next();
String value = jsonObject.getString(key);
dataDict.put(key, value);
}
} catch (JSONException e) {