<!-- 
    //---------------------------- logic_errorhandler.js ------------//
    //------------------------
    //Centralized error handling for any extraneous errors
    function suppressError(msg,url,line) {
	//Note: A script error will still be handled by IE. But,
	//(non-existing function call, undefined variable that is being accessed, etc.)
	//error will be handled here.
	//DEBUG alert('StopError() Error has occurred!\nError: ' + msg + '\nSource: ' + url + '\nLine: ' + line);
	return true;
    }
    window.onerror = suppressError;
// -->


