It looks like the form is the problem
<input type=submit name=abschicken>
it has no value assigned to it. Perhaps the variable is not being passed in Netscape 7, I don't have it here so I can't test it, but you can try two things.
1) Try this, change your submit to:
<input type="submit" name="abschicken" value="abschicken">
2) OR, try this, add to the form:
<input type="hidden" name="abschicken" value="1">
and change the submit to
<input type=submit name=submit >
Also, what you could do is remove the process.html (which contains the form) and add it to the process.php for the else tag (the one I questioned previously). That way if someone comes to the process.php page without the form, or they make an error in the form they do not have to go back, and they won't be displayed a blank page.
-Chris