Possible Duplicate:
Disabling enter key for form
How do I disable the enter key on a file upload input box. I submit this form progmatically in javascript. I don't want the user to submit it by pressing the enter key (this is what happens when the user presses the enter key).
The programatic submit is with in an ajax call like this.
document.f1_1.submit();
It calls the .php file listed in the attribute of the form f1_1.
Thanks