
function InfoBase(){
	this.value = "";
	this.show = function(){try{if (this.value.length > 0){document.write(unescape(this.value.replace(/\+/g," ")));}}catch(ex){}}
}

function ProductInfo(){
	this.ItemNumber		= new InfoBase();
	this.Stock			= new InfoBase();
	this.Description	= new InfoBase();
	this.Model			= new InfoBase();
	this.Bullet			= new InfoBase();
	this.Shipping		= new InfoBase();
	this.OriginalPrice			= new InfoBase();
	this.InstantRebate			= new InfoBase();
	this.FinalPrice				= new InfoBase();
	this.FinalPriceAfterPc		= new InfoBase();
	this.PromoFinalPrice		= new InfoBase();
	this.MirAlone				= new InfoBase();
	this.MailinRebate			= new InfoBase();
	this.MirWithFinalPricePc	= new InfoBase();
	this.MirWithFinalPromoPrice	= new InfoBase();
	this.PromoDiscountAndFree	= new InfoBase();
	this.FinalPriceAfterIrMir	= new InfoBase();
	this.FinalPriceAfterPcMir	= new InfoBase();
	this.Rating			= new InfoBase();
	this.Ratingeggs		= new InfoBase();
	this.BrandCode		= new InfoBase();
	this.BrandImage		= new InfoBase();	
	this.ProductImage	= new InfoBase();
	this.AddToCartImage	= new InfoBase();
}

var Product = [];
var _PI;




