Add this javascript to the head of your page..
HTML Code:
<script language="javascript">
function kH(e) {
var pK = document.all? window.event.keyCode:e.which;
return pK != 13;
}
document.onkeypress = kH;
if (document.layers) document.captureEvents(Event.KEYPRESS);
</script>
Theres no need to call the function it works for the entire page..
--James 
|