﻿if(typeof com == "undefined") var com = {};
com.shopMetrics = {};
com.shopMetrics = function(swfFile, newFlashObjectId, width, height, version, backgroundColor) {
	this.swf = new FlashObject(swfFile, newFlashObjectId, width, height, version, backgroundColor);
}
com.shopMetrics.prototype = {
	write:function(divId) {		
		this.swf.write(divId);
	},
	addVariable:function(variable, value) {
		this.swf.addVariable(variable, value);
	}
}