   function References(id, value)
    {
        this.id = id;
        this.value = value;
    }

    var allReferences = new Array();
    allReferences[0] = new Array(
                        new Option("Bitte wählen","100" ),
                        new Option("Banken","101" ),
                        new Option("Versicherungen","102" ),
                        new Option("Bausparkassen","103" ));


    allReferences[5] = new Array(
                        new Option("Bitte wählen","500" ),
                        new Option("BEA","501" ),
                        new Option("JBoss","502" ),
                        new Option("UTM","503" ),
                        new Option("CICS","504" ),
                        new Option("CORBA","505" ));

    allReferences[6] = new Array(
                        new Option("Bitte wählen","600" ),
                        new Option("Oracle","601" ),
                        new Option("DB2","602" ),
                        new Option("SESAM","603" ),
                        new Option("LEASY","604" ),
                        new Option("LIDS","605" ));


    allReferences[7] = new Array(
                        new Option("Bitte wählen","700" ),
                        new Option("Z/OS","701" ),
                        new Option("BS2000","702" ),
                        new Option("Unix/Linux","703" ),
                        new Option("Windows","704" ));

    var productGroup =  new
                        Array( new Option("Finanzdienstleister", "0"), 
                        new Option("Medien", "1"), 
                        new Option("Handel/Industrie", "2"), 
                        new Option("Logistik","8"),
                        new Option("Öffentliche Auftraggeber ", "3"), 
                        new Option("Content-Management ", "4"),
                        new Option("Middleware ", "5"),
                        new Option("Datenbanksysteme ", "6"),
                        new Option("Betriebssysteme ", "7"));

    function populate(aSelect, anArray)
    {
        for (j=0; j<anArray.length; j++)
        {
            aSelect.options[j] = anArray[j];
            if (j==0) aSelect.options[j].selected=true;
        }
    }

    function clearAll(aSelect)
    {
        for (j=aSelect.options.length; j>0; j--)
        {
            aSelect.options[j-1]=null;
        }
    }

    function changeReferences()
    {
        var thisTech=document.technologie.tech.value;
        if(thisTech=="1")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Medien";
        else if(thisTech=="2")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Industrie";
        else if(thisTech=="3")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Oeffentlich";
        else if(thisTech=="4")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=ContentManagement";
        else{
          clearAll(document.technologie.ref);
          populate(document.technologie.ref, allReferences[document.technologie.tech.options[document.technologie.tech.options.selectedIndex].value]);
        }
    }


    function changePage(){
        var thisReference=document.technologie.ref.value;

        if(thisReference=="101")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Finanzdienstleister/Banken";
        else if(thisReference=="102")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Finanzdienstleister/Versicherungen";
        else if(thisReference=="103")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Finanzdienstleister/Bausparkassen";
        else if(thisReference=="501")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Middleware/Bea";
        else if(thisReference=="502")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Middleware/JBoss";
        else if(thisReference=="503")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Middleware/Utm";
        else if(thisReference=="504")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Middleware/Cics";
        else if(thisReference=="505")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Middleware/Corba";
        else if(thisReference=="601")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Datenbank/Oracle";
        else if(thisReference=="602")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Datenbank/DB2";
        else if(thisReference=="603")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Datenbank/SESAM";
        else if(thisReference=="604")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Datenbank/LEASY";
        else if(thisReference=="605")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Datenbank/LIDS";
        else if(thisReference=="701")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Betriebssysteme/ZOS";
        else if(thisReference=="702")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Betriebssysteme/BS2000";
        else if(thisReference=="703")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Betriebssysteme/Linux";
        else if(thisReference=="704")document.location.href="../../evodionIT/Referenzen/referenzen.jsp?uri=Betriebssysteme/Windows";
          
       }
