        function dbObject() {
                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) {
                return unescape(this.propertyArray[propertyName]);
        }
