<!-- Disable enter key from submitting form --> 
<!-- No additional coding necessary -->
<!-- 
function onKeyPress () 
{
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;
	if (keycode == 13) 
{
	alert("If input is complete, click the Submit button.");
	return false
}
	return true 
}
	document.onkeypress = onKeyPress;
//-->