posted 19 years ago
Sorry for the delay in my response. Thank you both.
Eric, I tried what you said and it seems to be working now. There are three images that are used to submit the form and one of them was named 'submit'. Upon changing the name of this image everything works fine again.
Now let me see if I am correct in my thinking. The javascript submit() method looked for a submit element in the form. It found the image named submit and tried to treat it like a submit button; however, since it was just an image with the exact same javascript behind it the call failed stating that the object didn't support that method. So the only element that should be named submit in a form is the submit button itself?