$(document).ready(function() {
	$("#edtSenha").keyup(function(event){
		 if(event.keyCode == 13) {
			 $('#frmLogin').submit();
		  }
	});
});
