/********************************************************************
*    S O L U C A O           G R A F I C A            D E S I G N   *
*    GRAPHIC DESIGN * WEB DESIGN * ILLUSTRATION * WEB DEVELOPMENT   *
*********************************************************************
* E-MAIL INFO@SGD.COM.BR / M2O.GEO@YAHOO.COM / AAJJ32@HOTMAIL.COM   *
*********************************************************************
*     ICQ  : 1304925               MSN   :   aajj32@hotmail.com     *
*     AOL  : aajj32                Yahoo :    m20.geo@yahoo.com     *
*     Resume   :   http://www.sgd.com.br/cgi/lnkinlte.cgi?l=crr     *
*     Web Site : http://www.sgd.com.br/cgi/lnkinlte.cgi?l=email     *
*********************************************************************
	Filename         : object_StopOnError.js
	Last modified by : Antonio Jozzolino
	Created          : terça-feira, 13 de janeiro de 2004 13:44:56
	Last Updated     : terça-feira, 13 de janeiro de 2004 13:44:55
	Comments         : 
	Version          : 1.0
	Requirements     : 
	Usage            : 
********************************************************************/

function stopError() {
  return true;
}
try{
	if ( location.href.search( 'www.sgd.com.br' ) != -1 ){
		window.onerror = stopError;
		//alert(location.href);
	}
}
catch(err0){
	window.onerror = stopError;
}
