Hi there,
The first thing I noticed is that your form tags are nested. Your browser will be confused when you have something like this:
Code:
<form name="frm1">
<form name="frm2">
.... Some stuff here
</form>
</form>
You'll need to change it to this, if it is really necessary to have two forms:
Code:
<form name="frm1">
.... Some stuff here
</form>
<form name="frm2">
.... Some stuff here
</form>
I also recommend using quotes for attribute values as they prevent subtle bugs in your code. So change:
Code:
<form name=menuform method=post action=NextPage>
to
Code:
<form name="menuform" method="post" action="NextPage">
This isn't very important for the form tags, but it *is* for form values that contain spaces, for instance.
Is NextPage a valid file name? Or is this a side effect of posting a simplified version of your page??
Cheers,
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.