Robert: Funktion funkt in IE / Opera - Netscape 7 weigert sich

Beitrag lesen

Hier wäre noch der gesamte Quelltext, habe die Funktion schon umbenannt und auch das type-Attribut hinzugefügt. Es rührt sich aber immer noch nichts :O(

<html>

<head>
<title>Neue Seite 1</title>
<script language="javascript" src="funktionen.js">
</script>
<style type="text/css">
span { font-family: Arial; }
body { background : #F2F3F4; }
h1 {color: black;}
hr {color: black;}
font {font-size: 12pt;}
</style>
</head>

<script type="text/javascript">

function name()
{

var geschlecht = (document.Formular.Geschlecht[0].checked) ? "1" : "2";
 var nachname =  document.Formular.Eingabe.value;

if( (!Formular.Geschlecht[0].checked  && nachname != "") && (!Formular.Geschlecht[1].checked   && nachname != ""))
  {
  alert("Bitte wählen Sie eine Anrede aus!");
  }

else
 {
 if(nachname == "")
 {
 geschlecht = 0;
 nachname = "";
 setCookie("Geschlecht", geschlecht)
 setCookie("Name", nachname)
 location.href = "Branche.htm";
 }

else
  {
  if( geschlecht == "1" &&  nachname!= "")
   {
   geschlecht = 1;
   setCookie("Geschlecht", geschlecht)
   setCookie("Name", nachname)
   location.href = "Branche.htm";
   }

else
   {
   if(geschlecht == "2" &&  nachname!= "" )
    {
    geschlecht = 2;
    setCookie("Geschlecht", geschlecht)
    setCookie("Name", nachname)
    location.href = "Branche.htm";
    }

}

}
 }
}

</script>

<body>
<br>
<br>

<table bordercolor="#87AFD7" border=2 noshade cellpadding="7" align=center >
    <td bgcolor="#87AFD7"> <b><span
style='font-size:10.0pt;mso-bidi-font-size:10.0pt;font-family:Arial'><span><font size="4" ><b>Geben Sie hier bitte Ihren Nachnamen ein (freiwillig):</b></font></span><font size="4"></font></span></b></td>
<tr>
    <td background="m_w.jpg"> <span>
<form  name="Formular" >
        <p><br>
          <font>Herr
          <input type="radio" name="Geschlecht" value="2">
          Frau
          <input type="radio" name="Geschlecht" value="1">
          </font> <br>
          <br>
          <input type="text" name="Eingabe" size="30" >
        </p>
        <p>
        <img src="weiter.jpg" onClick="name()" style="cursor:hand" width="70" height="37"> <br>
        </p>
        </form>
</span> </td>
 </tr>
</table>
</body>

</html>