dm: 2 (DAU-)Fragen

Beitrag lesen

meinst du so was?:

<head>
 <script language="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>
<script>
<!--
function setfocus()
{
document.form.Auswahl.focus();
}
// --></script>
 </head>
 <body bgcolor=#fdfdfd onload=setfocus()>
 <div style="position:absolute; top:5px; right:5px"><form>
 <select size=1 name="Auswahl" onChange=
 "Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)"
 style="width:200px; background-color:#fdfdfd;
 font-size:9pt; font-family:Verdana;" width=2000>
 <option value="nothing">Bitte hier clicken --->
 <option value="cc.htm">Bla Bla
 <option value="bb.htm">Bla Bla
</select></form></body>