<!--
//(Best with IE) Prevent the Return key from accidentally submitting a form.
//The user now MUST click on the submit button. Alert messages do not appear in
//Netscape. Awesome!
function onKeyPress(){
    var keycode;
    if (window.event)
        keycode = window.event.keyCode;
    else if (e)
        keycode = e.which;
    else return true;
    if (keycode == 13) {  // disables Return key
        //alert("Please Click on the Submit button to send this");
        return false
    }
    return true
}
document.onkeypress=onKeyPress;
// -->
