episodes = new Array();

Model = function()
{
	this.printCoupon;
	this.modelData = null;
	return this;
};

Model.prototype.onData = function(evt)
{
	// called from flash
	// dispatch to archiver
	this.modelData = evt;
	EventManager.dispatchEvent({ type:"onModelData", model:this.modelData });

}

