Matthias Binninger: Link in Drop-Down-Menü schließt Frameset

Ich hab bei SelfHTML dieses Java-Scipt gefunden:
<script language="JavaScript">
  <!--
   function Go(x)
   {
    if(x == "zurueck")
    {
      document.forms[0].reset();
      document.forms[0].elements[0].blur();
      return;
    }
    else if(x == "beenden") 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>

<form>
<select size=1 name="Auswahl" onChange=
"Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)"
style="width:180px; background-color:#FFFF00;
font-size:9pt; font-family:Arial,sans-serif;" width=180>
<option value="nothing">Bitte Auswählen
<option value="nothing-">---------------------
und so weiter

Jetzt würde ich gern wissen wie ich einen der Links dazu bewege mein komplettes Frameset zu schließen.

Wo (und wie) muss ich welchen Code eingeben damit ich das gleiche ergebnis habe wie unter HTML mit
<A href="bla bla bla.htm" target=_top>?

  1. Jetzt würde ich gern wissen wie ich einen der Links dazu bewege mein komplettes Frameset zu schließen.

    top.location.href = "deineSeite.html"