/* ==UserScript==
   @name           No JavaScript Errors
   @description    Catches all JavaScript errors in all pages
   @include        *
   ==/UserScript==
  
   Done By: Samuel Liew [http://www.samliew.com]
   Version: 1.0
   Last Modified: 10/12/2007
  
*/

function catchError() { return true; }
window.onerror = catchError;
