function FSHUpdateListener(updateFSHEvent, fshHolder) {
	this.fshHolder = fshHolder;
	this.updateFSHEvent = updateFSHEvent;
	this.updateFSHEvent.updateFSH.subscribe(this.onUpdateFSH, this);
}

FSHUpdateListener.prototype.onUpdateFSH = function(type, args, me) {
	me.fshHolder.showText(args[0]);
}

