function QuickAccess(){ this.modulId = null; this.selectorId = null; this.items = new Array(); this.firstOptionText = "Wählen Sie einen Artikel aus"; this.addItem = function(id, optionText){ var item = { id: null, obj: null, value: "", text: "item" }; item.id = id; item.obj = d_obj(id); item.value = id; item.text = optionText; if (item.obj) { item.obj.style.display = "none"; this.items[this.items.length] = item; } }; this.showItem = function(id){ this.hideItems(); var obj = this.getItemObjectById(id); if (obj){ obj.style.display = "block"; } }; this.hideItems = function(){ for(var i=0; i