<!-- Original:  Shawn Hafen (shafen@mail.com) -->



<!-- Web Site:  http://shafen0.tripod.com/index.html -->



<!-- This script and many more are available free online at -->

<!-- The JavaScript Source!! http://javascript.internet.com -->



<!-- Begin

function onKeyPress () {

var keycode;

if (window.event) keycode = window.event.keyCode;

else if (e) keycode = e.which;

else return true;

if (keycode == 13) {

alert("Please Click on the Submit button when you are ready to send this form.");

return false

}

return true 

}

document.onkeypress = onKeyPress;

//  End -->

