﻿
function document.onkeypress() { 
    var e = event.srcElement;
    if (event.keyCode == 13 && e.tagName == "INPUT" && e.type == "text") {
        event.keyCode = 0;
    }
    
  
} 

  function killErrors() {
    return true;
}
window.onerror = killErrors;
