var sporthierarchie= { children:[ { id:0, name:"Sporthierarchie", typ:1, children:[ {id:1076,name:"BALLSPIELE",typ:1,bgcolor:"#FFFFFF",children:[{id:1081,name:"Badminton",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1065,name:"Basketball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1092,name:"Flag-Football",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1064,name:"Floorball-Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1082,name:"Fußball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1063,name:"Volleyball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1071,name:"Weitere",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1062,name:"GERÄTTURNEN - AKROBATIK",typ:1,bgcolor:"#FFFFFF",children:[{id:1096,name:"AcroYoga- Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1095,name:"Bodenturnen-Bodenakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1094,name:"Gerätturnen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1097,name:"Handstandtraining",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1061,name:"Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1079,name:"IM AM UNTER WASSER",typ:1,bgcolor:"#FFFFFF",children:[{id:1069,name:"Schwimmen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1070,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1080,name:"KAMPFSPORT - KAMPFKUNST",typ:1,bgcolor:"#FFFFFF",children:[{id:1068,name:"Aikido",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1072,name:"Kampfsportfitness",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1067,name:"Taekwondo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1066,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1074,name:"KLETTERN",typ:1,bgcolor:"#FFFFFF",children:[{id:1088,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1090,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1077,name:"KONDITION - FITNESS",typ:1,bgcolor:"#FFFFFF",children:[{id:1083,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1087,name:"OUTDOORWOCHEN / KURSTAGE",typ:1,bgcolor:"#FFFFFF",children:[{id:1089,name:"Wintersport",typ:1,bgcolor:"#FFFFFF",children:[{id:1085,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1084,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1086,name:"USI-Bus",typ:1,bgcolor:"#FFFFFF",children:[]}]}]},{id:1078,name:"TANZ",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1075,name:"WEITERES",typ:1,bgcolor:"#FFFFFF",children:[{id:1083,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1091,name:"zu Sonstigem",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1093,name:"XUNDES für JKU-MA",typ:1,bgcolor:"#FFFFFF",children:[]}]}]} function sphLevel(previousLevel,root) { this.previousLevel=previousLevel; this.root=root; var el=document.getElementById("uonSportarten"); var newEl=document.createElement("div"); el.appendChild(newEl); var select=document.createElement("select"); select.name="sp_id_in"; newEl.appendChild(select); for (var i=-1;i0) text=text+" >"; opt.text=text; opt.value=child.id; opt.style.backgroundColor=child.bgcolor; select.options.add(opt); } var that=this; var onchange=function() { that.expand(that.select.options[that.select.selectedIndex].value); } if (window.addEventListener) { select.addEventListener("change",onchange,false); } else { select.attachEvent("onchange",onchange); } this.select=select; this.newEl=newEl; } sphLevel.prototype={ expand:function(id) { if (this.nextLevel) this.collapse(); var next=null; for (var i=0;i0) { this.nextLevel=new sphLevel(this,next); } this.select.blur(); return this.nextLevel; }, collapse:function() { this.nextLevel.remove(); this.nextLevel=null; }, remove:function() { this.newEl.parentNode.removeChild(this.newEl); if (this.nextLevel) this.nextLevel.remove(); } }