var TextHandler = {
		
		hash:[],
		
		get:function(id) {
			return this.hash[id];
		},
		
		set:function(id,value) {
			this.hash[id] = value;
		}
}

