Hi cubist,
you can disable the submit button with conditionals.
when a required field is filled then activate it.
or disable the enter key general width a javascript function
e.g.
function stopRKey(evt) {
var evt = (evt) ? evt : ((event) ? event : null);
var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null);
if ((evt.keyCode == 13) && (node.type=="text")) {
return false;
}
}
window.onload = function() {
document.onkeypress = stopRKey;
};
Paul