	function dbObject(xmlIn) {
		this.myXML = xmlIn;
		this.nodeName = xmlIn.nodeName;
		this.objectType = "";
		this.callbackFunction = null;
		this.propertyValueArray = new Array();
		this.propertyNameArray = new Array();
		this.propertyArray = new Array();
	}
	dbObject.prototype.addProperty = function(propertyName, propertyValue) {
		this.propertyNameArray.push(propertyName);
		this.propertyValueArray.push(propertyValue);
		this.propertyArray[propertyName] = propertyValue;
	}
	dbObject.prototype.getPropertyValue = function(propertyName) {
		if (this.propertyArray[propertyName]) {
			return unescape(this.propertyArray[propertyName]);
		}
		else {
			return "";
		}
	}
