function submitForm() {
   key = window.event.keyCode;
   if(key == 13) {
      document.login.submit();
   }
}
