Hola sktrpunk.
Esto te puede servir:
Código HTML:
<html>
<head>
<script>
function pulsar(e) {
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==13) return false;
}
</script>
</head>
<body onkeypress="return pulsar(event)">
<form>
<input type="text" />
<input type="submit" />
</form>
</body>
</html>
Saludos,