karinsch: select-box + url aufrufen

Beitrag lesen

dankeschön!
nur wie sieht das aus, wenn die url immer im selben fenster (also "_self") aufgehn soll?

<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")
   top.location.href = parent.frames[1].location;
 else {
   parent.frames[1].location.href = x;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
 }
}
//-->
</script>

vielen Dank!