Max: Komische Zeichen in Drop-Down Menu

Beitrag lesen

Hallo. Um meine Java-Kenntnisse auszuprobieren habe ich folgenden Code prgrammiert:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<HTML>
<HEAD>
<TITLE></TITLE>
</HEAD>

<BODY BGCOLOR="#4A4A4A">
<span style="color:#FF9900;font-size:10pt;">

<form name="Formular">
<TABLE style="color:#FF9900;font-size:8pt;" ALIGN="center" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%">
<TR ALIGN="center" VALIGN="middle">
 <TD><u>Web-Navigation</u></TD>
 <TD></TD>
 <TD><u>MS.com-Navigation</u></TD>
<TR ALIGN="center" VALIGN="middle">
 <TD>
 <input style="background-color:#4A4A4A;color:#FF9900;" type="text" name="WebEingabe" value="http://www." size="30">
 <input style="background-color:#4A4A4A;color:#FF9900;" onClick="Surf2Web(this.form.WebEingabe.value)" type="button" value="Go!">
    </TD>
    <TD><input type="button" style="background-color:#4A4A4A;color:#FF9900" value="<-" onClick="javascript:history.back()"></TD>
 <TD>
 <select style="background-color:#4A4A4A;color:#FF9900" name="select1" onchange="Surf2MS(this.form)" size="1">
   <option selected value="0">Mastershrimp.com</option>
   <option value="http://www.mastershrimp.com/inhalte/main.html">- Mainpage</option>
         <option value="http://www.mastershrimp.com/inhalte/bilder.html">- Bilder</option>
      <option value="http://www.mastershrimp.com/inhalte/wallpapermain.html">- Wallpapers</option>
      <option value="http://www.mastershrimp.com/inhalte/downloads.html">- Downloads</option>
      <option value="http://www.mastershrimp.com/inhalte/toilettenf.html">- WC-Guide</option>
   <option value="http://www.mastershrimp.com/inhalte/fun.html">- Fun</option>
      <option value="http://www.mastershrimp.com/inhalte/links.html">- Links</option>
      <option value="http://www.mastershrimp.com/inhalte/onoff.html">- Online/Offline</option>
      <option value="http://www.mastershrimp.com/inhalte/vote.html">- Vote</option>
      <option value="http://www.mastershrimp.com/inhalte/about.html">- About</option>
      <option value="blablabla.html">- Gästebuch</option>
      <option value="http://22138.rapidforum.com">- Forum</option>
 </select>
  
    <input type="button" style="background-color:#4A4A4A;color:#FF9900" value="MS.com" onClick="Surf2Web('http://www.mastershrimp.com');">
 </TD>
</TABLE>
</form>
<iframe name="Iframe2" width="100%" height="87%" frameborder="1" scrolling="auto"></iframe>

<script language="Javascript">
<!--
function Surf2Web(URL)
 {
 parent.Iframe2.location.href = URL;
 }

function Surf2MS(URL)
 {
 var myindex = Formular.select1.selectedIndex;
 if (Formular.select1.options[myindex].value != "0")
 {
 parent.Iframe2.location.href = Formular.select1.options[myindex].value;
 }
 }
//-->
</script>

</span>
</BODY>
</HTML>

Es klappt auch soweit alles (ist ja nicht soooo kompliziert), nur tritt oft folgendes Problem auf:
Das Drop-Down-Menü zeigt statt der normalen Schrift so komisches Zeichengewirr an. Wenn ich dann auf "maximieren" im Browser klicke, klappts manchmal wieder.
Also tritt das Problem nur unregelmäßig auf, was die Diagnose erschwert.
Könnte mir jemand weiterhelfen?
An meinem Browser (IE 6) dürfte es kaum liegen, da ich bis jetzt jedes Dropdownmenü korrekt angezeigt bekommen habe.
Danke!
MfG
Max