function property(id, mi_id, do_id, co_id, strName, strValue, strLabel, blnTabSet){
	this._id = id;
	this._mi_id = mi_id;
	this._do_id = do_id;
	this._co_id = co_id;
	this._name = strName;
	this._value = strValue;
	this._label= strLabel;
	this.tabSet=blnTabSet;
}

property.prototype.getId = function(){return this._id;}
property.prototype.getMi_id = function(){return this._mi_id;}
property.prototype.getDo_id = function(){return this._do_id;}
property.prototype.getCo_id = function(){return this._co_id;}
property.prototype.getName = function(){return this._name;}
property.prototype.getValue = function(){return this._value;}
property.prototype.getLabel = function(){return this._label;}
property.prototype.isTabSet = function(){return this.tabSet;}

