$(document).ready(function() {
	$('#UserPassword').keyup(function(e) {
		if(e.keyCode == 13) {
			document.UserLoginForm.submit();
		}
	});
});