// This function will listen to the enter keystroke. If this happends the form has to be submitted.
function loginOnEnter(e)
{
  if(e.keyCode == 13)
    $("#loginForm").submit();
}
