Also das hier ist der Code von deiner Seite.
<html>
<body>
<script type="text/javascript">
<!--
function Go(x)
{
if(x == "nothing")
{
document.forms[0].reset();
document.forms[0].elements[0].blur();
return;
}
else if(x == "end")
{
parent.location.href = parent.frames[2].location;
}
else
{
parent.frames[2].location.href = x;
document.forms[0].reset();
document.forms[0].elements[0].blur();
}
}
//-->
</script>
<form action>
<select size="1" name="Auswahl" onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)" style="width:165px; background-color:#FFFFE0; font-size:9pt; font-family:courier new,Arial,sans-serif;" width="165">
<option value="nothing">[ bitte auswählen! ]</option>
<option value="2004.html">2004</option>
<option value="2005.html">2005</option>
<option value="2006.html">2006</option>
</select>
</form>
</body>
</html>
[/code]
Und unten bei <option vlaue=""> gibst Du an welche Seite aufgerufen werden soll. Der Dateiname wird dann an die Funktion Go übergeben und der zeigt die dann an.
Frank