function parseJSON(json_string) { //replace with true JSON parser that doesn't use eval()
	if (json_string != "") {
		if (json_string[0] == "{" && json_string[json_string.length-1] == "}") {
			return eval("("+json_string+")");
		}
	}
}
