<!-- 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 Use the TAB Key to Move Between Fields.  When Finished, Click the 'SUBMIT YOUR ANSWERS' button to E-Mail this Profile for Processing.");
return false
}
return true 
}
document.onkeypress = onKeyPress;
//  End -->