/*VersionNumber: 1.0.0<script>*/

/**---------------------------------------------------------------------------------------------
*Name: errorHandler 
*Description: Manages the errors occurred in the page.
*Date: 07/04/2000
*Author: MAC
*---------------------------------------------------------------------------------------------*/ 

function errorHandler (sMsg, sUrl, sLine){
	alert('ERROR FOUND' +
		'\nDefinition:..' + sMsg +
		'\nPath:........' + sUrl +
		'\nLine:........' + sLine);
	return true;
}

window.onerror = errorHandler;
/*</script>*/