// noTryCatchErrors.js
//
// prevents error messages from being issued in older browsers that do not support try-catch
//
window.onerror = function () { return true; }