var sporthierarchie= { children:[ { id:0, name:"Sporthierarchie", typ:1, children:[ {id:1521,name:"AUSBILDUNG",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1436,name:"BALLSPIELE",typ:1,bgcolor:"#FFFFFF",children:[{id:1441,name:"Badminton",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1425,name:"Basketball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1472,name:"Beachvolleyball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1462,name:"Faustball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1452,name:"Flag-Football",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1424,name:"Floorball-Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1442,name:"Fußball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1502,name:"Golf",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1461,name:"Hallenhockey",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1459,name:"Squash",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1464,name:"Tennis",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1463,name:"Tischtennis",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1423,name:"Volleyball",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1431,name:"Weitere",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1501,name:"FPH/FREIZEITSPORTVEREIN FH OÖ",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1422,name:"GERÄTTURNEN - AKROBATIK",typ:1,bgcolor:"#FFFFFF",children:[{id:1456,name:"AcroYoga- Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1455,name:"Bodenturnen-Bodenakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1454,name:"Gerätturnen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1457,name:"Handstandtraining",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1421,name:"Partnerakrobatik",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1439,name:"IM AM UNTER WASSER",typ:1,bgcolor:"#FFFFFF",children:[{id:1466,name:"Kanupolo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1465,name:"Rudern",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1429,name:"Schwimmen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1467,name:"Tauchen",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1430,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1468,name:"JKUsports Tryout",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1440,name:"KAMPFSPORT - KAMPFKUNST",typ:1,bgcolor:"#FFFFFF",children:[{id:1428,name:"Aikido",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1432,name:"Kampfsportfitness",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1427,name:"Taekwondo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1426,name:"Weiteres",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1434,name:"KLETTERN",typ:1,bgcolor:"#FFFFFF",children:[{id:1448,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1450,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1437,name:"KONDITION - FITNESS",typ:1,bgcolor:"#FFFFFF",children:[{id:1443,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1458,name:"NEUER USI-Kurs",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1447,name:"OUTDOORWOCHEN / KURSTAGE",typ:1,bgcolor:"#FFFFFF",children:[{id:1481,name:"Sommer",typ:1,bgcolor:"#FFFFFF",children:[{id:1482,name:"Sommercamp",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1449,name:"Wintersport",typ:1,bgcolor:"#FFFFFF",children:[{id:1445,name:"Ausrüstung",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1444,name:"Kurse",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1446,name:"USI-Bus",typ:1,bgcolor:"#FFFFFF",children:[]}]}]},{id:1469,name:"RADSPORT",typ:1,bgcolor:"#FFFFFF",children:[{id:1471,name:"Bikepolo",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1470,name:"Mountainbike",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1438,name:"TANZ",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1460,name:"USI-Fitness-Studio",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1435,name:"WEITERES",typ:1,bgcolor:"#FFFFFF",children:[{id:1443,name:"Yoga",typ:1,bgcolor:"#FFFFFF",children:[]},{id:1451,name:"zu Sonstigem",typ:1,bgcolor:"#FFFFFF",children:[]}]},{id:1453,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(); } }