Try adding this to your survey's HTML head:
<script>
$(document).keypress(function(e){
if (e.which == 13) {
SSI_SubmitMe();
}
})
</script>
Or this version that won't trip on multiline text elements:
<script>
$(document).keypress(function(e){
if (e.which == 13 && !$(e.target).is('textarea')) {
SSI_SubmitMe();
}
})
</script>