//============================================================
//Script:    To block JavaScript errors in the page. We've found //this useful with page material from //	 sources other than our own that may contain errors (ad banners, //automated news feeds, //	 etc.).
//Functions: Blocks JavaScript errors in the page
//Browsers:  NS & IE 4.0 & later; degrades gracefully
//Author:    Sanjay S.Patil
//Date :	09/10/2003
//============================================================


//Place this simple script in the head of the page 
function blockError(){return true;}
window.onerror = blockError;

