function update_auswahl() { var familieAuswahl = document.forms.verzeichnis.familie; var modellAuswahl = document.forms.verzeichnis.modell; var taktAuswahl = document.forms.verzeichnis.takt; var cacheAuswahl = document.forms.verzeichnis.cache; var sockelAuswahl = document.forms.verzeichnis.sockel; var steppingAuswahl = document.forms.verzeichnis.stepping; var cmosAuswahl = document.forms.verzeichnis.cmos; var stromAuswahl = document.forms.verzeichnis.strom; var busAuswahl = document.forms.verzeichnis.bus; modellAuswahl.options.length = 0; // DropDown Menü entleeren taktAuswahl.options.length = 0; // DropDown Menü entleeren cacheAuswahl.options.length = 0; // DropDown Menü entleeren sockelAuswahl.options.length = 0; // DropDown Menü entleeren steppingAuswahl.options.length = 0; // DropDown Menü entleeren cmosAuswahl.options.length = 0; // DropDown Menü entleeren stromAuswahl.options.length = 0; // DropDown Menü entleeren busAuswahl.options.length = 0; // DropDown Menü entleeren if (familieAuswahl.options [familieAuswahl.selectedIndex]. value == "Athlon64") { familieAuswahl.options.length = 0; // DropDown Menü entleeren familieAuswahl.options[0] = new Option("Athlon 64"); modellAuswahl.options[0] = new Option("-Keine Angaben-"); modellAuswahl.options[1] = new Option("2800+"); modellAuswahl.options[2] = new Option("3000+"); modellAuswahl.options[3] = new Option("3200+"); modellAuswahl.options[4] = new Option("3400+"); modellAuswahl.options[5] = new Option("3500+"); modellAuswahl.options[6] = new Option("3700+"); modellAuswahl.options[7] = new Option("3800+"); modellAuswahl.options[8] = new Option("4000+"); modellAuswahl.options[9] = new Option("LE-1600"); modellAuswahl.options[10] = new Option("LE-1620"); taktAuswahl.options[0] = new Option("-Keine Angaben-"); taktAuswahl.options[1] = new Option("1800"); taktAuswahl.options[2] = new Option("2000"); taktAuswahl.options[3] = new Option("2200"); taktAuswahl.options[4] = new Option("2400"); taktAuswahl.options[5] = new Option("2600"); cacheAuswahl.options[0] = new Option("-Keine Angaben-"); cacheAuswahl.options[1] = new Option("512kb"); cacheAuswahl.options[2] = new Option("1MB"); sockelAuswahl.options[0] = new Option("-Keine Angaben-"); sockelAuswahl.options[1] = new Option("754"); sockelAuswahl.options[2] = new Option("939"); sockelAuswahl.options[3] = new Option("AM2"); steppingAuswahl.options[0] = new Option("-Keine Angaben-"); steppingAuswahl.options[1] = new Option("C0"); steppingAuswahl.options[2] = new Option("CG"); steppingAuswahl.options[3] = new Option("D0"); steppingAuswahl.options[4] = new Option("E3"); steppingAuswahl.options[5] = new Option("E4"); steppingAuswahl.options[6] = new Option("E6"); steppingAuswahl.options[7] = new Option("F2"); steppingAuswahl.options[8] = new Option("F3"); steppingAuswahl.options[9] = new Option("G1"); cmosAuswahl.options[0] = new Option("-Keine Angaben-"); cmosAuswahl.options[1] = new Option("65nm"); cmosAuswahl.options[2] = new Option("90nm"); cmosAuswahl.options[3] = new Option("130nm"); stromAuswahl.options[0] = new Option("-Keine Angaben-"); stromAuswahl.options[1] = new Option("35"); stromAuswahl.options[2] = new Option("45"); stromAuswahl.options[3] = new Option("51"); stromAuswahl.options[4] = new Option("59"); stromAuswahl.options[5] = new Option("62"); stromAuswahl.options[6] = new Option("67"); stromAuswahl.options[7] = new Option("89"); busAuswahl.options[0] = new Option("-Keine Angaben-"); busAuswahl.options[1] = new Option("1600"); busAuswahl.options[2] = new Option("2000"); } else if (familieAuswahl.options [familieAuswahl.selectedIndex]. value == "Athlon64FX") { familieAuswahl.options.length = 0; // DropDown Menü entleeren familieAuswahl.options[0] = new Option("Athlon 64 FX"); modellAuswahl.options[0] = new Option("-Keine Angaben-"); modellAuswahl.options[1] = new Option("FX-51"); modellAuswahl.options[2] = new Option("FX-53"); modellAuswahl.options[3] = new Option("FX-55"); modellAuswahl.options[4] = new Option("FX-57"); modellAuswahl.options[5] = new Option("FX-60"); modellAuswahl.options[6] = new Option("FX-62"); modellAuswahl.options[7] = new Option("FX-70"); modellAuswahl.options[8] = new Option("FX-72"); modellAuswahl.options[9] = new Option("FX-74"); taktAuswahl.options[0] = new Option("-Keine Angaben-"); taktAuswahl.options[1] = new Option("2200"); taktAuswahl.options[2] = new Option("2400"); taktAuswahl.options[3] = new Option("2600"); taktAuswahl.options[4] = new Option("2800"); taktAuswahl.options[5] = new Option("3000"); cacheAuswahl.options[0] = new Option("-Keine Angaben-"); cacheAuswahl.options[1] = new Option("1MB"); cacheAuswahl.options[2] = new Option("2MB"); sockelAuswahl.options[0] = new Option("-Keine Angaben-"); sockelAuswahl.options[1] = new Option("939"); sockelAuswahl.options[2] = new Option("940"); sockelAuswahl.options[3] = new Option("AM2"); sockelAuswahl.options[4] = new Option("F"); steppingAuswahl.options[0] = new Option("-Keine Angaben-"); steppingAuswahl.options[1] = new Option("C0"); steppingAuswahl.options[2] = new Option("CG"); steppingAuswahl.options[3] = new Option("E4"); steppingAuswahl.options[4] = new Option("E6"); steppingAuswahl.options[5] = new Option("F2"); steppingAuswahl.options[6] = new Option("F3"); cmosAuswahl.options[0] = new Option("-Keine Angaben-"); cmosAuswahl.options[1] = new Option("90nm"); cmosAuswahl.options[2] = new Option("130nm"); stromAuswahl.options[0] = new Option("-Keine Angaben-"); stromAuswahl.options[1] = new Option("89"); stromAuswahl.options[2] = new Option("104"); stromAuswahl.options[3] = new Option("110"); stromAuswahl.options[4] = new Option("125"); busAuswahl.options[0] = new Option("-Keine Angaben-"); busAuswahl.options[1] = new Option("1600"); busAuswahl.options[2] = new Option("2000"); } else if (familieAuswahl.options [familieAuswahl.selectedIndex]. value == "Athlon64X2") { familieAuswahl.options.length = 0; // DropDown Menü entleeren familieAuswahl.options[0] = new Option("Athlon 64 X2"); modellAuswahl.options[0] = new Option("-Keine Angaben-"); modellAuswahl.options[1] = new Option("3600+"); modellAuswahl.options[2] = new Option("3800+"); modellAuswahl.options[3] = new Option("4000+"); modellAuswahl.options[4] = new Option("4200+"); modellAuswahl.options[5] = new Option("4400+"); modellAuswahl.options[6] = new Option("4600+"); modellAuswahl.options[7] = new Option("4800+"); modellAuswahl.options[8] = new Option("5000+"); modellAuswahl.options[9] = new Option("5200+"); modellAuswahl.options[10] = new Option("5400+"); modellAuswahl.options[11] = new Option("5600+"); modellAuswahl.options[12] = new Option("6000+"); modellAuswahl.options[13] = new Option("6400+"); taktAuswahl.options[0] = new Option("-Keine Angaben-"); taktAuswahl.options[1] = new Option("1900"); taktAuswahl.options[2] = new Option("2000"); taktAuswahl.options[3] = new Option("2100"); taktAuswahl.options[4] = new Option("2200"); taktAuswahl.options[5] = new Option("2300"); taktAuswahl.options[6] = new Option("2400"); taktAuswahl.options[7] = new Option("2500"); taktAuswahl.options[8] = new Option("2600"); taktAuswahl.options[9] = new Option("2700"); taktAuswahl.options[10] = new Option("2800"); taktAuswahl.options[11] = new Option("3000"); taktAuswahl.options[12] = new Option("3200"); cacheAuswahl.options[0] = new Option("-Keine Angaben-"); cacheAuswahl.options[1] = new Option("1MB"); cacheAuswahl.options[2] = new Option("2MB"); sockelAuswahl.options[0] = new Option("-Keine Angaben-"); sockelAuswahl.options[1] = new Option("939"); sockelAuswahl.options[2] = new Option("AM2"); steppingAuswahl.options[0] = new Option("-Keine Angaben-"); steppingAuswahl.options[1] = new Option("E4"); steppingAuswahl.options[2] = new Option("E6"); steppingAuswahl.options[3] = new Option("F2"); steppingAuswahl.options[4] = new Option("F3"); steppingAuswahl.options[5] = new Option("G1"); steppingAuswahl.options[6] = new Option("G2"); cmosAuswahl.options[0] = new Option("-Keine Angaben-"); cmosAuswahl.options[1] = new Option("65nm"); cmosAuswahl.options[2] = new Option("90nm"); stromAuswahl.options[0] = new Option("-Keine Angaben-"); stromAuswahl.options[1] = new Option("35"); stromAuswahl.options[2] = new Option("65"); stromAuswahl.options[3] = new Option("89"); stromAuswahl.options[4] = new Option("110"); stromAuswahl.options[5] = new Option("125"); busAuswahl.options[0] = new Option("2000"); } else if (familieAuswahl.options [familieAuswahl.selectedIndex]. value == "AthlonX2") { familieAuswahl.options.length = 0; // DropDown Menü entleeren familieAuswahl.options[0] = new Option("Athlon X2"); modellAuswahl.options[0] = new Option("-Keine Angaben-"); modellAuswahl.options[1] = new Option("BE-2300"); modellAuswahl.options[2] = new Option("BE-2350"); modellAuswahl.options[3] = new Option("BE-2400"); taktAuswahl.options[0] = new Option("-Keine Angaben-"); taktAuswahl.options[1] = new Option("1900"); taktAuswahl.options[2] = new Option("2100"); taktAuswahl.options[3] = new Option("2300"); cacheAuswahl.options[0] = new Option("1MB"); sockelAuswahl.options[0] = new Option("AM2"); steppingAuswahl.options[0] = new Option("-Keine Angaben-"); steppingAuswahl.options[1] = new Option("G1"); steppingAuswahl.options[2] = new Option("G2"); cmosAuswahl.options[0] = new Option("65nm"); stromAuswahl.options[0] = new Option("45"); busAuswahl.options[0] = new Option("2000"); } else if (familieAuswahl.options [familieAuswahl.selectedIndex]. value == "Phenom") { familieAuswahl.options.length = 0; // DropDown Menü entleeren familieAuswahl.options[0] = new Option("Phenom"); modellAuswahl.options[0] = new Option("-Keine Angaben-"); modellAuswahl.options[1] = new Option("9500"); modellAuswahl.options[2] = new Option("9600"); modellAuswahl.options[3] = new Option("9700"); taktAuswahl.options[0] = new Option("-Keine Angaben-"); taktAuswahl.options[1] = new Option("2200"); taktAuswahl.options[2] = new Option("2300"); taktAuswahl.options[3] = new Option("2400"); cacheAuswahl.options[0] = new Option("512kb x4"); sockelAuswahl.options[0] = new Option("AM2+"); steppingAuswahl.options[0] = new Option("B2"); cmosAuswahl.options[0] = new Option("65nm"); stromAuswahl.options[0] = new Option("95"); busAuswahl.options[0] = new Option("3600"); } else if (familieAuswahl.options [familieAuswahl.selectedIndex]. value == "Sempron") { familieAuswahl.options.length = 0; // DropDown Menü entleeren familieAuswahl.options[0] = new Option("Sempron"); modellAuswahl.options[0] = new Option("-Keine Angaben-"); modellAuswahl.options[1] = new Option("2800+"); modellAuswahl.options[2] = new Option("3000+"); modellAuswahl.options[3] = new Option("3100+"); modellAuswahl.options[4] = new Option("3200+"); modellAuswahl.options[5] = new Option("3300+"); modellAuswahl.options[6] = new Option("3400+"); modellAuswahl.options[7] = new Option("3500+"); modellAuswahl.options[8] = new Option("3600+"); modellAuswahl.options[9] = new Option("3800+"); modellAuswahl.options[10] = new Option("LE-1100"); modellAuswahl.options[11] = new Option("LE-1150"); modellAuswahl.options[12] = new Option("LE-1200"); modellAuswahl.options[13] = new Option("LE-1250"); taktAuswahl.options[0] = new Option("-Keine Angaben-"); taktAuswahl.options[1] = new Option("1600"); taktAuswahl.options[2] = new Option("1800"); taktAuswahl.options[3] = new Option("1900"); taktAuswahl.options[4] = new Option("2000"); taktAuswahl.options[5] = new Option("2100"); taktAuswahl.options[6] = new Option("2200"); cacheAuswahl.options[0] = new Option("-Keine Angaben-"); cacheAuswahl.options[1] = new Option("128kb"); cacheAuswahl.options[2] = new Option("256kb"); cacheAuswahl.options[3] = new Option("512kb"); sockelAuswahl.options[0] = new Option("-Keine Angaben-"); sockelAuswahl.options[1] = new Option("754"); sockelAuswahl.options[2] = new Option("AM2"); steppingAuswahl.options[0] = new Option("-Keine Angaben-"); steppingAuswahl.options[1] = new Option("CG"); steppingAuswahl.options[2] = new Option("D0"); steppingAuswahl.options[3] = new Option("E3"); steppingAuswahl.options[4] = new Option("E6"); steppingAuswahl.options[5] = new Option("F2"); steppingAuswahl.options[6] = new Option("G1"); steppingAuswahl.options[7] = new Option("G2"); cmosAuswahl.options[0] = new Option("-Keine Angaben-"); cmosAuswahl.options[1] = new Option("65nm"); cmosAuswahl.options[2] = new Option("90nm"); cmosAuswahl.options[3] = new Option("130nm"); stromAuswahl.options[0] = new Option("-Keine Angaben-"); stromAuswahl.options[1] = new Option("35"); stromAuswahl.options[2] = new Option("45"); stromAuswahl.options[3] = new Option("62"); busAuswahl.options[0] = new Option("1600"); } }