Struppi: Neues Fenster aus Select-Box

Beitrag lesen

function MM_openBrWindow1(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

<form name="form2" id="form2">
<select name="Auswahl" onchange="MM_openBrWindow1(this,'popfenster','width=420,height=350')">

Groß- und Kleinschreibung ist in HTML egal.

Du sprichst aber die Options falsch an.
onchange="MM_openBrWindow1(this.options[this.selectedIndex].value ,'popfenster','width=420,height=350')">

Struppi.