function Product() {
	this.category = null;
	this.benefits = new Array();
	this.arguments = new Array();
	this.mustBe = new Array();
	this.cantBe = new Array();
	this.id = null;
	this.fullName = null;
	this.name = null;
	this.group = null;
	this.description = null;
	this.alt = null;
	this.number = 0;
	this.multiple = 0;
	this.amount = 0;
	this.price = 0;
	this.validated = false;
	this.version = null;

	Product.prototype.isOld = function() {
		return this.version == "old";
	}
	
	Product.prototype.isNew = function() {
		return this.version == "new";
	}

}

