hab auf meine homepage eine auswahlliste, basierend auf javascript eingebunden,
<head>
<!--
function Go(x) {
if(x == "none") {
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else {
parent.frames[1].location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
//-->
<body>
<form style="margin-bottom:0pt;" target="main">
<select style="font-family:Verdana,Arial,Helvetica; font-size:8pt;" name="Auswahl" size=1 onChange=" Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)">
<option value="none" seleced>A bis Z</option>
<option value="none">--------------------</option>
<option value="">Text</option>
beim aufrufen eines links bekomme ich aber die meldung : 'document.forms[0].elements[0]' ist kein objekt. was ist falsch ???