function Dsy(){
this.Items = {};
}Dsy.prototype.add = function(id,iArray){
this.Items[id] = iArray;
}
var dsy = new Dsy();


